C# for newbies (C# Terminology/Technical Words)

Good C# startup for those who are new to programming/c#/asp.net http://msdn.microsoft.com/en-us/library/ms173231.aspx
For programming guide have a look at http://msdn.microsoft.com/en-us/library/67ef8sbd.aspx
access modifier
A keyword, such as private, protected, internal, or public, that restricts access to a type or type member. For more information, see Access Modifiers.

 

accessible member
A member that can be accessed by a given type. An accessible member for one type is not necessarily accessible to another type. For more information, see Access Modifiers and Friend Assemblies.
accessor
A method that sets or retrieves the value of a private Read the rest of this entry »