class A
{
static void Main(string[] args)
{
List<RootJson> eList = new List<RootJson>();
RootJson rootjson = new RootJson();
Libs.B.Get();
}
}
public class B
{
public static void Get()
{
rootjson.Hub = new List<Hub>();
Hub hub = new Hub();
hub.OS = "1.1";
rootjson.Hub.Add(rootjson.hub);
}
}
问题是rootjson属于A类,在B类中不可用。如何使其可用? 我想在A类中继续创建rootjson,因为我还想创建C,D和E类,它们也会向rootjson添加内容。
在这种情况下如何在B类中声明rootjson?