documentation:AppDomainSetup.ShadowCopyFilesが文字列であるのはなぜですか?
そのシャドウコピーを示すために、「真」の文字列値を含む文字列がオンになっています。シャドウコピーがオフになっていることを示す場合は「false」です。
これは1.1以降です。誰でも光を当てることはできますか?
私は良い測定のためのゲッターとセッターをreflector'd:
public string ShadowCopyFiles
{
get
{
return this.Value[8];
}
set
{
if ((value != null) && (string.Compare(value, "true", StringComparison.OrdinalIgnoreCase) == 0))
{
this.Value[8] = value;
}
else
{
this.Value[8] = null;
}
}
}
//The referenced Value property...
internal string[] Value
{
get
{
if (this._Entries == null)
{
this._Entries = new string[0x10];
}
return this._Entries;
}
}
private string[] _Entries;
ので、多分Value
配列を簡単にコピーコンストラクタや何かを生みますか?