假设我有这种情况:
public class Layer
{
public int layerIndex = 0;
}
public class Utility
{
public static string GetLayerClassName(int index)
{
// whatever it returns
}
}
public class ItemOne
{
public Layer layer;
}
public class ItemTwo
{
public Layer layer;
}
public class Executor
{
private ItemTwo m_itemTwo;
public Executor()
{
string className = Utility.GetLayerClassName(m_itemTwo.layerIndex);
// So basically in this situation i need the name "Item Two"
}
}
所以基本上我需要包含该字段变量的类的名称。有什么方法可以获得该字符串吗?
编辑:我编辑了帖子,因此它与我的情况非常吻合,而不是太混乱。