Method Fill
Fill(IntPtr, byte, int)
Copies the fillByte into each of the first count bytes of the object
pointed to by dest.
IntPtr Fill(IntPtr dest, byte fillByte, int count)Parameters
- destIntPtr
- Pointer to the object to fill. 
- fillBytebyte
- Fill byte (0..255). 
- countint
- Number of bytes to fill. 
Returns
- IntPtr
- dest
Remarks
If the object is a potentially-overlapping subobject
or is not trivially copyable, the behavior is undefined.
If count is greater
than the size of the object pointed to by dest, the behavior is undefined.