VncSharpWpf.Framebuffer.this C# (CSharp) Method

this() public method

An indexer to allow access to the internal pixel buffer.
public this ( int index ) : int
index int
return int
		public int this[int index] {
			get {
				return pixels[index];
			}
			set {
				pixels[index] = value;				
			}
		}