2 つのクラス間でオブジェクトを作成できますか? 私は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からオブジェクトを作成しようとしたとき