Posts by Nash • 73 points
2 posts
-
3
votes2
answers289
viewsQ: Why doesn’t Return work?
I have a problem with return not work at all. For now I’m just printing on the console, so I’m replacing the return for Console.WriteLine(), but didn’t want to always have to do it. Here is an…
-
3
votes3
answers318
viewsQ: Difference between properties syntax in C#
For what I researched, if I do: public int numero { get; set; } is the same thing as: private int numero; public int Numero { get{ return numero; } set{ numero = value; } } But in the first chunk of…