Ejemplo n.º 1
0
 public static bool _ <T>(this go.crypto.aes_package.ctrAble target, out T result)
 {
     try
     {
         result = target._ <T>();
         return(true);
     }
     catch (PanicException)
     {
         result = default !;
Ejemplo n.º 2
0
 public static T _ <T>(this go.crypto.aes_package.ctrAble target)
 {
     try
     {
         return(((go.crypto.aes_package.ctrAble <T>)target).Target);
     }
     catch (NotImplementedException ex)
     {
         throw new PanicException($"interface conversion: {GetGoTypeName(target.GetType())} is not {GetGoTypeName(typeof(T))}: missing method {ex.InnerException?.Message}");
     }
 }