コード例 #1
0
 /// <summary>
 ///     Turns an identifier into a list of words. Words are identified by capitals (Camel Case), numerics and underscores or hyphens.
 ///     Words after the first are decapitalized.
 /// </summary>
 /// <param name="value">The identifier being transformed.</param>
 /// <returns>The transformed identfier text.</returns>
 private static string UnIdentifierLc(string value)
 {
     return(GenUtilities.UnIdentifierLc(value));
 }