OpenBve.ManagedContent.KeyValuePair.ToString C# (CSharp) Méthode

ToString() public méthode

Gets the textual representation of this key-value pair.
public ToString ( ) : string
Résultat string
            public override string ToString()
            {
                if (this.Language != null) {
                    return this.Key + "[" + this.Language + "] = " + this.Value;
                } else {
                    return this.Key + " = " + this.Value;
                }
            }
ManagedContent.KeyValuePair