메소드 | 설명 | |
---|---|---|
CapitalizeFirst ( string name ) : string |
Capitalizes the first letter of the given string
|
|
FirstAndLastName ( ) : string |
Generates a name from random syllables. The name includes both a first and last name.
|
|
GenerateName ( int minSyllables, int maxSyllables ) : string |
Generates a name by concatenating n syllables where: minSyllables < n < maxSyllables
|
|
LoadSyllables ( string path ) : string[] |
Loads list of syllables from the file at the given path.
|
public static CapitalizeFirst ( string name ) : string | ||
name | string | THe string to capitalize the first letter of |
리턴 | string |
public static GenerateName ( int minSyllables, int maxSyllables ) : string | ||
minSyllables | int | The minimum number of syllables to include in the name |
maxSyllables | int | The maximum number of syllables to include in the name |
리턴 | string |
public static LoadSyllables ( string path ) : string[] | ||
path | string | The path to the file that contains the syllables |
리턴 | string[] |