Senin, 04 April 2011

C# Convert Generic Type

I am posting this because I didn't see a simple solution on the first few hits when searching the net.If you have a generic class of type T and you want to using it with basic types such as int, long, etc. You can use the following method to do the casting: class myClass{   private int myVal;   public T Get()   {      return ((T)(Convert.ChangeType(myVal, typeof(T))));   } }enum SomeEnum { One

Tidak ada komentar:

Posting Komentar