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
| public class SomeClass | |
| { | |
| public SomeClass() | |
| { | |
| // do something awesome here | |
| } | |
| } |
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
| public class Suit | |
| { | |
| public static readonly Suit CLUBS = new Suit("Hearts"); | |
| public static readonly Suit DIAMONDS = new Suit("Diamonds"); | |
| public static readonly Suit HEARTS = new Suit("Hearts"); | |
| public static readonly Suit SPADES = new Suit("Spades"); | |
| private Suit(string pName) | |
| { | |
| name = pName; |
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
| public Enum Suit | |
| { | |
| Spades, | |
| Clubs, | |
| Diamonds, | |
| Hearts | |
| } |
NewerOlder