Compose() private static method

private static Compose ( string source, int checkType ) : string
source string
checkType int
return string
        public static string Normalize(string source, int type)
        {
            switch (type)
            {
            case 1:
            case 3:
                return(Normalization.Decompose(source, type));

            default:
                return(Normalization.Compose(source, type));
            }
        }