예제 #1
0
        public static void StringToThisTest(string input, string expected)
        {
            CamelCase cc     = new CamelCase();
            string    result = cc.StringToThis(input);

            Assert.Equal(result, expected);
        }
 public static string ToCamelCase(this string normalText)
 {
     return(camelCase.StringToThis(normalText));
 }