Created
May 23, 2021 13:40
-
-
Save Lahirutech/d018d883febf0c379193e5f34dc5016d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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