Esempio n. 1
0
        public string GetHandlerInterfaceMethodName()
        {
            var splited = SerializedName.Split('_', StringSplitOptions.RemoveEmptyEntries);

            if (splited.Length > 1)
            {
                splited = splited.Skip(1).ToArray();
            }
            return(String.Join("", splited).ToCamelCase());
        }