我有一个类名 DB.IFCArray,其中有很多字段(名称、描述等),我想实现一个转到 DB.IFCArray.field 的函数并做一些事情..
public static bool if_is_a(DB.IFCArray object1, string field, string value)
{
if (object1.field == value) // this ofc not working, but hope you get the idea
return true;
return false;
}