Click or drag to resize
NbObjectSet Method
指定されたキーに対応する値を設定する。 設定が可能な型は、プリミティブ型、string、 IList、IDictionary のいずれか。

Namespace: Nec.Nebula
Assembly: Nec.Nebula.Core (in Nec.Nebula.Core.dll) Version: 7.0.0.0 (7.0.0.0)
Syntax
public void Set(
	string key,
	Object value
)

Parameters

key
Type: SystemString
キー
value
Type: SystemObject
Exceptions
ExceptionCondition
ArgumentNullExceptionキーがnull
ArgumentException不正文字列を含むキーを検出
Remarks
コレクション初期化子を使うことで NbObject の生成時に一括で値を設定することも可能。 例:
var obj = new NbObject("Emp") {
    {"name", "Taro Nichiden"},
    {"age", 32}
};

には、空の文字、先頭に"$"が含まれる文字列、もしくは"."が含まれる文字列は使用できない。
Version Information

Core

Supported in: 1.0
See Also