FUNCTION PARAMETER / /USER INPUT PARAMETER/ FUNCTION WITH IN A FUNCTION CONCEPT/
FUNCTION PARAMETER:- -parameter is special type of variable used in function(). -there are some types of parameter used in function(). 1) receiver parameter-(at the time of function creation) 2) sender parameter -(at the time of function calling (access)) 1) receiver parameter- using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FUNCTIONPARAMETER { class Program { void input(int a)//receiver parameter { Console.WriteLine(a); } static void Main(string[] args) { Program p1 = new Program(); p1.input(20);//sender parameter Console.Read...