3
votes
Mixture of types in generic list
C# doesn't support covariance for generics. Consider this Covariance a …
2
votes
How to get the data value of an enum in a generic method?
You can do it like this (change DataUtil.ToByte(x) to x.ToByte(null)):
public static object EnumToDataSource<T>() where T : struct, IConvertible
{
if (!typeof (T).I …
1
vote
0
votes
Explicit Casting Problem
You can also consider Simulated Covariance for .NET Generics by Krzysztof Cwalina
…
1
vote
DataTable into List<T> *without* where T : class, new() - potential problems?
You can use Activator.CreateInstance<T>().
The CreateInstance generic method is used by compilers to implement the instantiation of types specified by type …
