این راهنما حتی می تواند به صورت فارسی تایپ شود وهنگام استفاده از یک متد شما را در درک و مقدار دهی آن راهنمایی میکند مانند متد ها وکلاس های خود مایکرو سافت



///<summary>
/// Provides more streamlined interface for associating a single or multiple extensions with a single program.
///</summary>
classAssociationManager
{
AssociationManager a = newAssociationManager();
///<summary>
/// Determines of the list of extensions are associated with the specified program id.
///</summary>
///<param name="progId">Program id to check against.</param>
///<param name="extensions">String array of extensions to check against the program id.</param>
///<returns>String array of extensions that were not associated with the program id.</returns>
publicstring[] CheckAssociation(string progId, paramsstring[] extensions)
}
.
.
.
{