我想知道是否最好使用以下结构:
private var x = new MyType();
x = GetResults();
或者
public var x = new MyType();
GetResults();//this accesses the global x and populates it
基本上我应该隐藏我从主线程填充的内容吗?
我想知道是否最好使用以下结构:
private var x = new MyType();
x = GetResults();
或者
public var x = new MyType();
GetResults();//this accesses the global x and populates it
基本上我应该隐藏我从主线程填充的内容吗?