Skip to content

Instantly share code, notes, and snippets.

@Lahirutech
Created May 23, 2021 13:40
Show Gist options
  • Save Lahirutech/d018d883febf0c379193e5f34dc5016d to your computer and use it in GitHub Desktop.
Save Lahirutech/d018d883febf0c379193e5f34dc5016d to your computer and use it in GitHub Desktop.
using System;
public class Program
{
static void MySalary(int friendsSalary)
{
friendsSalary += 200;
Console.WriteLine("My Salary "+ friendsSalary);
}
public static void Main()
{
int friendsSalary = 100;
Console.WriteLine("My Friends Salary " + friendsSalary);
MySalary(friendsSalary);
Console.WriteLine("My Friends Salary " +friendsSalary);
}
}
//OutPut
/* My Friends Salary 100
My Salary 300
My Friends Salary 100
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment