C# Language 2
Terms
undefined, object
copy deck
- SEALED
-
Class Modifier
class can not be inherited and refined in a derived class. - MAIN
-
entry point of a method
must be static
member function of a class or struct - struct
-
keyword used for value type constraint
restricts a type parameter to a value type. - abstract
-
class modifier
future instances of the class cannot be created - unsafe
-
class modifier
can contain unsafe consructs, such as a pointer - internal
-
member accesibility
visible in containing assembly - internal protected
- visible in containing assembly or descendants of the current class
- public
- visible in containing assembly and assemblies referencing the assembly
- protected
- visible inside current class and any descendants
- private
- visible inside current class