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; | |
| class Class1 | |
| { | |
| public static void Main () | |
| { | |
| string someString = ""; //Declares a string called someString | |
| //and sets it to nothing | |
| int someInt = 0; //Declares an int called someInt |
NewerOlder