VRage.Game.ModAPI.Ingame.Utilities
MyIniKey
Assembly: VRage.Game.dll
public struct MyIniKey: IEquatable<MyIniKey>
Represents the combination of a section and a key in a MyIni structure.
Fields
| Member | Description |
|---|---|
| static EMPTY |
Properties
| Member | Description |
|---|---|
| IsEmpty | Determines whether this MyIniKey is empty. |
| Name | Gets the Key part of this MyIniKey |
| Section | Gets the Section part of this MyIniKey |
Constructors
| Member | Description |
|---|---|
| MyIniKey(string, string) |
Methods
| Member | Description |
|---|---|
| static Parse(string) | Parses a string in the form ofsection/keyinto a MyIniKey object. |
| static TryParse(string, out MyIniKey) | Parses a string in the form ofsection/keyinto a MyIniKey object. |
| Equals(MyIniKey) | Compares this MyIniKey with another. Note that this is equality in the sense of a configuration key, which means the comparison is implicitly case insensitive. |
| Equals(object) | Compares this MyIniKey with another. Note that this is equality in the sense of a configuration key, which means the comparison is implicitly case insensitive. |
| GetHashCode() | Gets the hash code representing this MyIniKey |
| ToString() | Generates a string representing this MyIniKey in the form ofsection/key. |
Implements: