Dev2.BaseConvertTO.BaseConvertTO C# (CSharp) Method

BaseConvertTO() public method

public BaseConvertTO ( string fromExpression, string fromType, string toType, string toExpression, int indexNumber, bool inserted = false ) : System.Collections.Generic
fromExpression string
fromType string
toType string
toExpression string
indexNumber int
inserted bool
return System.Collections.Generic
        public BaseConvertTO(string fromExpression, string fromType, string toType, string toExpression, int indexNumber,
            bool inserted = false)
        {
            Inserted = inserted;
            ToType = string.IsNullOrEmpty(toType) ? "Base 64" : toType;
            FromType = string.IsNullOrEmpty(fromType) ? "Text" : fromType;
            ToExpression = string.IsNullOrEmpty(toExpression) ? string.Empty : toExpression;
            FromExpression = fromExpression;
            IndexNumber = indexNumber;
        }

Same methods

BaseConvertTO::BaseConvertTO ( ) : System.Collections.Generic