我正在从动态更新的json中检索数据。 有时含有X类物体,有时还有X类物体。 我需要一个能够在上述任何局势中开展工作的家长级Y。 物体名称:x保持不变。
class Y
{
public X x { get; set; }
public X[] x { get; set; }
}
class X
{
public int a { get; set; }
}
This shows an error: the type Y already contains a definition for x
Is there any possible way to do it??