Welcome to MSDN Blogs Sign in | Join | Help

November 2006 - Posts

Quick Tip - Sharing code between multiple projects in Visual Studio 2005

I have long been an advocate for putting common code into an assembly that is shared by applications needing the functionality. That said, there are times where the separate assembly approach is not appropriate. For those situations, today's tip may help

What is late binding?

In a nutshell, late binding is run-time resolution / dynamic loading. Compile time resolution (sometimes called 'early binding'), uses the compiler and linker to verify that the argument types used to call a function matches the function's signature.
Posted by DavidKlineMS | 1 Comments
Filed under:

Quick Tip: Specifying a field's name when using the XmlSerializer

Last month, I wrote about how to instruct the XmlSerializer to create an XML attribute for fields in an object . Today, I'd like to talk about how to specify the name used to represent a field in the resulting XML. By default, when an object is serialized,
 
Page view tracker