MemSet() публичный статический Метод

public static MemSet ( byte dest, int startAt, byte value, int count ) : void
dest byte
startAt int
value byte
count int
Результат void
Пример #1
0
 public static void MemClear(Byte[] dest, int destIndex, int count)
 {
     AggBuffMx.MemSet(dest, destIndex, 0, count);
 }
Пример #2
0
 public static void memset(byte[] dest, int destIndex, byte byteValue, int count)
 {
     AggBuffMx.MemSet(dest, destIndex, byteValue, count);
 }