Name
Last updated
Last updated
Represents a sequence of syllables that make up a name.
Name()
Creates an empty name with no syllables.
Name(System.String[] syllable)
Creates a new name with the desired syllables.
Name( copy)
Append(System.String syllable)
Adds a new syllable to this name. Returns this instance of for chaining.
Equals(System.Object obj)
System.Boolean
Returns true if this is equal to the specified . A is equal to another only if their string values are also equal.
GetHashCode()
System.Int32
Returns a hash code for this .
ToString()
System.String
Sequences the syllables of this into a single string, capitalizes it, and returns it.
Syllables
System.Collections.Generic.List <System.String>
The ordered syllables that make up this name.