GetVariable
public object GetVariable(string name, object defaultValue) ;
Variableの値を取得する。
パラメーター名 | 説明 |
---|---|
name | 名前。 |
defaultValue | デフォルトの値。パラメータがない場合に返される。 |
パラメータの値。パラメータがない場合はdefaultValueを返す。
public object GetVariable(int id, object defaultValue) ;
Variableの値を取得する。
パラメーター名 | 説明 |
---|---|
id | ID。 |
defaultValue | デフォルトの値。パラメータがない場合に返される。 |
パラメータの値。パラメータがない場合はdefaultValueを返す。
public TVariable GetVariable<TVariable>(string name, TVariable defaultValue) ;
Variableの値を取得する。
型パラメーター名 | 説明 | 型制約 |
---|---|---|
TVariable | 取得するVariableの型 |
パラメーター名 | 説明 |
---|---|
name | 名前。 |
defaultValue | デフォルトの値。パラメータがない場合に返される。 |
パラメータの値。パラメータがない場合はdefaultValueを返す。
public TVariable GetVariable<TVariable>(int id, TVariable defaultValue) ;
Variableの値を取得する。
型パラメーター名 | 説明 | 型制約 |
---|---|---|
TVariable | 取得するVariableの型 |
パラメーター名 | 説明 |
---|---|
id | ID。 |
defaultValue | デフォルトの値。パラメータがない場合に返される。 |
パラメータの値。パラメータがない場合はdefaultValueを返す。