Hardly.StringHelpers.ToStringAzViaMod C# (CSharp) Method

ToStringAzViaMod() public static method

public static ToStringAzViaMod ( this i, bool includeUppercase = false, bool includeNumbers = false, char includedSymbols = null ) : string
i this
includeUppercase bool
includeNumbers bool
includedSymbols char
return string
        public static string ToStringAzViaMod(this uint i, bool includeUppercase = false, bool includeNumbers = false, char[] includedSymbols = null)
        {
            char[] availableChars;
            if(includeUppercase && includeNumbers) {
                availableChars = AtoZBothcasesWithNumbers;
            } else if(includeUppercase) {
                availableChars = AtoZBothcases;
            } else if(includeNumbers) {
                availableChars = AtoZLowercaseWithNumbers;
            } else {
                availableChars = AtoZLowercase;
            }

            return ((int)i).ToStringAzViaMod(availableChars);
        }

Same methods

StringHelpers::ToStringAzViaMod ( this i, char availableChars ) : string