Accord.SystemTools.SetUnmanagedMemory C# (CSharp) Method

SetUnmanagedMemory() public static method

Fill memory region with specified value.
public static SetUnmanagedMemory ( byte dst, int filler, int count ) : byte*
dst byte Destination pointer.
filler int Filler byte's value.
count int Memory block's length to fill.
return byte*
        public static unsafe byte* SetUnmanagedMemory(byte* dst, int filler, int count)
        {
            return memset(dst, filler, count);
        }

Same methods

SystemTools::SetUnmanagedMemory ( IntPtr dst, int filler, int count ) : IntPtr