Mega Code Archive

 
Categories / C# Tutorial / Class
 

Pass integer value by value

using System; class MainClass {   static void Main(string[] args)   {       int MyInt = 5;     MyMethod( MyInt);             Console.WriteLine(MyInt);   }      static public int MyMethod( int myInt)   {     myInt = myInt + myInt;     return myInt;   } } 5