Initialize() public méthode

public Initialize ( byte Data, int Index ) : void
Data byte
Index int
Résultat void
Exemple #1
0
    public static ByteArrayWriter CreateNew(int Length) {
      ByteArrayWriter writer = new ByteArrayWriter();

      byte[] data = new byte[Length];

      writer.Initialize(data, 0);

      return writer;
    }
        public static ByteArrayWriter CreateNew(int Length)
        {
            ByteArrayWriter writer = new ByteArrayWriter();

            byte[] data = new byte[Length];

            writer.Initialize(data, 0);

            return(writer);
        }