ATMLModelLibrary.model.signal.basic.Noise.Deserialize C# (CSharp) 메소드

Deserialize() 공개 정적인 메소드

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

Same methods

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