ATMLModelLibrary.model.common.doubleArray.Deserialize C# (CSharp) Method

Deserialize() public static method

Deserializes workflow markup into an doubleArray object
public static Deserialize ( string input, doubleArray &obj, System &exception ) : bool
input string string workflow markup to deserialize
obj doubleArray Output doubleArray object
exception System output Exception value if deserialize failed
return bool
        public static bool Deserialize(string input, out doubleArray obj, out System.Exception exception)
        {
            exception = null;
            obj = default(doubleArray);
            try
            {
                obj = Deserialize(input);
                return true;
            }
            catch (System.Exception ex)
            {
                exception = ex;
                return false;
            }
        }

Same methods

doubleArray::Deserialize ( string input, doubleArray &obj ) : bool
doubleArray::Deserialize ( System s ) : doubleArray
doubleArray::Deserialize ( string input ) : doubleArray