The topics described here concentrates fully on pure .Net Framework, describing actual meaning of some programming concepts, FCL and best practices. However you will be using these concepts in all . Net framework compatible languages like Microsoft visual basic .net (VB.Net) or C# .Net (csharp.Net) to build a web application (Asp.Net) or Desktop applications (winforms .net) or Web/Windows services





This blog has moved!

You will be automatically redirected to the new address. If that does not occur, visit
http://Codemine.net
and update your bookmarks.

Wednesday, July 11, 2007

Type in .NET environment

Type defines a particular structure in which contains some well known phrases like fields, Method, Property, Event. Etc. anything and everything in .Net world should be in the form of this type, so that any other .Net compliant language can understand, query and use these types very easily. And this is what the common type system (CTS) mean. CTS is one of the standard among CLI, common language infrastructure which specify lots of other standards like file formats, metadata which are the trunk parts of the language specification

0 comments: