Day 19-Difference between Types and Type Member

Classes,structs,enum,interfaces,delegates are called as types &
fields,properties,constructors,methods etc that normally reside in a type are called as type member


In C# there are 5 different access modifiers
  • Private
  • Protected
  • Public
  • Internal
  • Protected Internal


Type Member can have all the access modifiers,where as the types can have only 2 (internal,public) of the  5 access modifiers