.
class Foo
{
public static int Bar { get; set; }
}
EDIT , . dll ? , , "" .
, :
class Foo
{
public int X {get;set;}
public int Y {get;set;}
}
Foo X Y. dll/utility , Foo Bar. , , "X", "Y".
class Bar
{
public int Y {get;set;}
}
class Foo : Bar
{
public int X {get;set;}
}
//
utility.Baz(foo.GetType().BaseType); // <- Base here is Bar, which does not have X