Interface ISerializableHash<T>
Namespace: VRoidSDK
Assembly: VRoidSDK.dll
Syntax
public interface ISerializableHash<T>
where T : class
Type Parameters
Name | Description |
---|---|
T |
Properties
Item[String]
指定されたキーに関連付けられている値を取得または設定する
Declaration
T this[string key] { get; set; }
Parameters
Type | Name | Description |
---|---|---|
String | key | キー |
Property Value
Type | Description |
---|---|
T |
Methods
Remove(String)
指定したkeyのデータを削除する
Declaration
bool Remove(string key)
Parameters
Type | Name | Description |
---|---|---|
String | key | 削除するキー |
Returns
Type | Description |
---|---|
Boolean |
ToArray()
keyとvalueのペアの配列を取得する
Declaration
SerializablePair<T>[] ToArray()
Returns
Type | Description |
---|---|
SerializablePair<T>[] |