Exemplo n.º 1
0
 // -----------------------------------------------
 public static Secure GetSecure(Secure.eKey key)
 {
     if (instance._data_Secure.ContainsKey(key))
     {
         return(_instance._data_Secure[key]);
     }
     return(null);
 }
Exemplo n.º 2
0
 public static bool TryGetSecure(Secure.eKey key, out Secure val)
 {
     return(_instance._data_Secure.TryGetValue(key, out val));
 }