我对反射有点陌生,所以如果这是一个更基本的问题,请原谅我,我正在用 c# 编写程序,并且正在尝试编写一个通用的 Empty 或 null 检查器方法,到目前为止代码读取为
public static class EmptyNull
{
public static bool EmptyNullChecker(Object o)
{
try
{
var ob = (object[]) o;
if (ob == null || !ob.Any())
return true;
}
catch (Exception e)// i could use genercs to figure out if this a array but //figured i just catch the exception
{Console.WriteLine(e);}
try
{
if (o.GetType().GetGenericTypeDefinition().Equals("System.Collections.Generic.List`1[T]"))
//the following line is where the code goes haywire
var ob = (List<o.GetType().GetGenericArguments()[0].ReflectedType>)o;
if (ob == null || !ob.Any())
return true;
}
catch (Exception e)
{ Console.WriteLine(e); }
return o == null || o.ToString().Equals("");//the only thing that can return "" after a toString() is a string that ="", if its null will return objects placeMarker
}
}
现在显然对于一个列表,我需要一种方法来确定它是什么类型的通用列表,所以我想使用反射来找出它,然后用反射投射它这可能吗
谢谢你