Ejemplo n.º 1
0
 public static bool Deserialize(string input, out ATMLContext obj, out Exception exception)
 {
     exception = null;
     obj       = default(ATMLContext);
     try
     {
         obj = Deserialize(input);
         return(true);
     }
     catch (Exception ex)
     {
         exception = ex;
         return(false);
     }
 }
Ejemplo n.º 2
0
 public static void Initialize()
 {
     ATMLContext i = Instance;
 }