カスタムタイプを初期化すると、その内部のすべての小道具の初期化が行われますか? クライアントのメモリのパフォーマンスと消費に関してこれを尋ねています。ドットネットで 私はカスタムタイプにカスタムタイプが.NETの小道具のメモリを消費する方法
public class myCustomType
{
public string prop1 {get;set;}
public string prop2 {get;set;}
public string prop3 {get;set;}
public string prop4 {get;set;}
}
コード内のどこかのメモリ消費の私は
var parOfmyCustomType = new myCustomType(){ prop1 = "stingToHold" };
var listOfCustom = new list<myCustomType>(){ parOfmyCustomType };
を行う機密レベル変更、私はmyCustomTypeを作成するときに、私のアプリは、すべての刺し傷の小道具のためにメモリを使用しないようなものを作成した場合プロット値を1つだけ設定します
あなたは何を得るのですかからmyCustomType mt = new myCustomType(); Debug.WriteLine(mt.prop1); ? – Paparazzi