我可以在两个类之间创建对象吗?我有 2 个类文件。first.cs 和 second.cs ,在 first.cs 类文件中有(都在同一个命名空间中)
public class news {
//some code here
}
second.cs 类文件有
public class newsround{
// some code here
news nw = new news();
nw. <-- Nothing display here
}
当我尝试从以前的 first.cs 创建对象时无法