public PublicKey(VarType varType) : this() { var firstByte = varType.FirstByte; var size = PredictLength(firstByte); _bytes = new byte[size]; varType.CopyTo(_bytes); }