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