コード例 #1
0
 public CK3(byte[] decryptedData = null, string ident = null)
 {
     Data = (byte[])(decryptedData ?? new byte[SIZE_PARTY]).Clone();
     PKMConverter.checkEncrypted(ref Data);
     Identifier = ident;
     if (Data.Length != SIZE_PARTY)
         Array.Resize(ref Data, SIZE_PARTY);
 }