Dot Net Knowledges Base

This Page is aimed to help developers to learn Microsoft .NET and allied technologies. We provide articles and tutorials in a simple and lucid language. our content targets beginner to advanced level developers.

Latest Articles

  • Creating COM+ Aware Components in .NET

    As you might be aware that .NET components are different than traditional COM components in terms of reference counting, memory management and registration. However, .NET provides a way to host your .NET components inside COM...

    Read more...
    10/23/2007 11:10:12 PM Category .Net COM
  • XML Serialization using C#

    Serialization is a process of storing state of an object to some media like disk file or stream. .NET further provides a way to serialize objects in XML format. Thus objects can be converted into XML documents (serialization)...

    Read more...
    10/23/2007 11:08:27 PM Category .Net Serializing
  • Understanding .NET Assemblies

    In the .NET world it is the Assembly that provides such ‘bundled’ code reuse. Assemblies contain the code that is executed by the Common Language Runtime (CLR). Every .NET application consists of one or more assemblies...

    Read more...
    10/23/2007 11:03:43 PM Category .NET Assemblies
  • Introduction to attributes

    .NET itself uses attributes at many places. For example to declare your component as transactional you can use special attributes. The attributes can be used for variety of other purpose like specifying author information, copy ...

    Read more...
    10/23/2007 10:54:21 PM Category .Net Attributes
  • Introduction to .NET Reflection

    Introduction Reflection is ability to find information about types contained in an assembly at run time. Prior to .NET languages like C++ provided such ability in a limited sense. .NET provides a whole new set of APIs to introspect assemblies...

    Read more...
    10/23/2007 10:01:23 PM Category .NET Reflection
  • Serializing Objects using C#

    In simple words serialization is a process of storing the object instance to a disk file. Serialization stores state of the object i.e. member variable values to disk. Deserialization is reverse of serialization i.e. ...

    Read more...
    10/23/2007 9:46:32 PM Category .Net Serializing
  • .NET Interoperability with COM

    Introduction Up till recently COM ruled the world of component development. Many companies have invested a great amount of money and time in COM components. With introduction of .NET people are concerned about the future of COM. Microsoft...

    Read more...
    10/23/2007 9:34:00 PM Category .Net COM