Archives
-
Using Reflection and Type.GetType
Recently I had to use Type.GetType to use Remote Objects in IIS (yea its old) and I kept running into a problem with Type.GetType("...") returning null.
-
WCF - Using WebHttpBinding for REST services
You can use WebHttpBinding to have REST endpoints in your WCF application to expose simple public service calls.
-
Get an Enum value from a string
I love to use enumerated datatypes for programming. This code snippet is really useful for getting an enum value from it's name rather than it's integer index.