Passing Parameters in C#
There are three primary methods of passing parameters to C# methods: Regular Parameter Passing This is passing parameters with no modifying keywords : void MyMethod(Student studentObj, int aNumber) { aNumber += 5; studentObj.Name = “Jon”; } In the above example MyMethod takes two parameters – a Student object and an Integer. Note the difference between [...]
Read more



5:21 am by csharphelp