I have a writeablebitmap.
I want to scroll the contents 1 pixel to the left, and fill in a new pixelrow in the rightmost column.
In C++ I'd memmove the entire buffer 1 pixel to the left, and overwrite the last pixel of each line - but I don't know what's the best way to do that in C# as there's no memmove.