View Single Post
  #2 (permalink)  
Old 05-07-2008, 11:49 AM
srinivas srinivas is offline
Junior Member
 
Join Date: May 2008
Posts: 20
Default

public - The member can be accessed from anywhere
2. internal - The member can only be accessed from type it
originates from or other types in the same assembly
3. protected - The member can only be accessed from the type
it originates from or from detrieved types of the
originating type
4. protected internal - implies protected OR internal ( not
protected AND internal )
5. private - The member is only accessible by other members
within the type it originates from.
Reply With Quote