GetInt
GetInt(int, int)
public int GetInt(int id, int defaultValue) ;
説明
Int型の値を取得する。
パラメーター
パラメーター名 | 説明 |
---|---|
id | ID。 |
defaultValue | デフォルトの値。パラメータがない場合に返される。 |
戻り値
パラメータの値。パラメータがない場合はdefaultValueを返す。
GetInt(string, int)
public int GetInt(string name, int defaultValue) ;
説明
Int型の値を取得する。
パラメーター
パラメーター名 | 説明 |
---|---|
name | 名前。 |
defaultValue | デフォルトの値。パラメータがない場合に返される。 |
戻り値
パラメータの値。パラメータがない場合はdefaultValueを返す。
GetInt(string, out int)
Obsolete public bool GetInt(string name, out int value) ;
説明
Int型の値を取得する。
パラメーター
パラメーター名 | 説明 |
---|---|
name | 名前。 |
value | 取得する値。 |
戻り値
指定した名前のパラメータがあった場合にtrue。
GetInt(int, out int)
Obsolete public bool GetInt(int id, out int value) ;
説明
Int型の値を取得する。
パラメーター
パラメーター名 | 説明 |
---|---|
id | ID。 |
value | 取得する値。 |
戻り値
指定した名前のパラメータがあった場合にtrue。