Exemple #1
0
 /// <summary>
 /// Parses the GrhIndex from a string.
 /// </summary>
 /// <param name="parser">The Parser to use.</param>
 /// <param name="value">The string to parse.</param>
 /// <returns>The GrhIndex parsed from the string.</returns>
 public static GrhIndex ParseGrhIndex(this Parser parser, string value)
 {
     return(new GrhIndex(parser.ParseUShort(value)));
 }