Browse by Tags
All Tags »
.NET C# (
RSS)
Sorry, but there are no more tags available to filter with.
Have you ever had to do something like this: string typeName = " MyDataType" ; Type type = Type.GetType( typeName ); object o = someGenericClass < typeof(type) > (); If you have, then you have also discovered that this does not compile. The good...
This article will introduce you to a server side validation library. The objectives of the library are to: Provide a uniform and extensible approach for even complex validation scenarios. Reduce the amount of code required for user input validation. Create...
More Posts