0
What exactly does a parameter mean in a method? while creating custom method?
2 odpowiedzi
0
You use parameters to give to a method variables to work with. e.g: Console.WriteLine(). This method had a lot of types of parameters you can give: string, int, float, decimal, object. Your methods may needs parameters to interact with the outside world. That's a pretty basic programming concept.
0
yah think