Exemple #1
0
 public ImmutableArray <Account> getAccountsByType(string type) =>
 ImmutableArrayUnsafe.createByMove(
     java.Call <AndroidJavaObject[]>("getAccountsByType", type).map(ajo => new Account(ajo))
     );
Exemple #2
0
 public static CryptoHash calculate(byte[] bytes, Kind kind) =>
 new CryptoHash(ImmutableArrayUnsafe.createByMove(hashBytes(kind, bytes)), kind);
Exemple #3
0
 public ImmutableArray <Account> getAccounts() =>
 ImmutableArrayUnsafe.createByMove(
     java.Call <AndroidJavaObject[]>("getAccounts").map(ajo => new Account(ajo))
     );