pair クラス : ExistsSecond ゲッタ
説明
二番目のインスタンスが設定されているかどうかを返します。
構文
pairInstance.ExistsSecond
引数
無し
返り値
クラス | 説明 |
bool | 設定されているかどうか。 |
サンプルコード
1: | pair newPair = new pair(); |
2: | bool exists = newPair.ExistsSecond; // false; |
3: | newPair.Second = new string("set as second item."); |
4: | exists = newPair.ExistsSecond; // true |
注意
インスタンスが設定されている場合、trueを返します。 それ以外の場合は、falseを返します。
参照リンク
無し