ドキュメントから:
シャドウ コピーがオンになっていることを示す文字列値「true」を含む文字列。または、シャドウ コピーがオフになっていることを示す "false"。
そして、1.1からこのようになっています。誰でも光を当てることができますか?
適切な測定のためにゲッターとセッターをリフレクターしました:
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
配列はより簡単なコピーコンストラクタか何かを生み出すのでしょうか?