Dev2.CaseConvertTO.CaseConvertTO C# (CSharp) Method

CaseConvertTO() public method

public CaseConvertTO ( string stringToConvert, string convertType, string result, int indexNumber, bool inserted = false ) : System.Collections.Generic
stringToConvert string
convertType string
result string
indexNumber int
inserted bool
return System.Collections.Generic
        public CaseConvertTO(string stringToConvert, string convertType, string result, int indexNumber,
            bool inserted = false)
        {
            Inserted = inserted;
            StringToConvert = stringToConvert;
            ConvertType = string.IsNullOrEmpty(convertType) ? "UPPER" : convertType;
            Result = string.IsNullOrEmpty(result) ? string.Empty : result;
            IndexNumber = indexNumber;
        }

Same methods

CaseConvertTO::CaseConvertTO ( ) : System.Collections.Generic