Browse by Tags
Sorry, but there are no more tags available to filter with.
- "const" vs "static readonly"
-
Składowe klasy, których niezmienności jesteśmy pewni, możemy oznaczyć przynajmniej dwojako: 1: public class ConstantValues 2: { 3: public const int Constant = 666; 4: public static readonly int StaticReadonly = 123; 5: } Efekt ich wykorzystania jest taki Czytaj więcej....