Browse by Tags

Sorry, but there are no more tags available to filter with.
Serialization
Published Fri, Mar 17 2006 20:26 | Paul June
I know that this is an old age technology in .Net. But I was surprised that some C# programmers still don’t know about serialization. So I’m creating this blog for the ones who still hasn’t got any idea on serialization. But if you already know this,...
Filed under:
C# GetObject and CreateObject
Published Wed, Mar 15 2006 17:08 | Paul June
When interoperating with COM applicaitons, sometimes you need to get the running instance of the application object of the app. In VB you would be doing this by using the GetObject method. Basically the GetObject method returns a reference to an object...
Filed under:
Generics 101
Published Sun, Mar 5 2006 19:08 | Paul June
Another new feature of C# 2.0 is the ability to create classes that can handle different types while eradicating type boxing on the underlying type. This new feature is called Generic Classes. This type of class enable its user to create a somewhat “general...
Filed under:
Nullable Types
Published Tue, Feb 28 2006 19:08 | Paul June
Well, this is the official opening of my blog. I’ll be blogging on the new features of Visual C# 2005 on my first few posts. The newest feats that I love on C# is on its new Nullable Types. Nullable types gives you the ability to create types that can...
Filed under: