But anybody know how compute public key from private key only with c#, without other soft?
Function, class etc ?
Need compute compress and ucompress key.
NBitcoin library:
using NBitcoin;
...
var privKeyCompressed = new Key();
var pubKeyCompressed = privKeyCompressed.PubKey;
var privKeyUncompressed = new Key(false);
var pubKeyUncompressed = privKeyUncompressed.PubKey;