CSharp examples for System:Type
Cast As generic type
public class Main{ public static T CastAs<T>(this object @object) { return (T) @object; }// w w w.ja v a 2s .c o m }