In C# I can create an RSA
public/private key pair...
RSA rsa = RSA.Create();
byte[] priKey = rsa.ExportRSAPrivateKey();
byte[] pubKey = rsa.ExportRSAPublicKey();
Now I want to do effectively the same thing using ECDsa
...
ECDsa ecdsa = ECDsa.Create();
byte[] priKey = ecdsa.ExportECPrivateKey();
...
...but I can't seem to find a method allowing the public key to be exported?