VncSharpWpf.Framebuffer.this C# (CSharp) Метод

this() публичный Метод

An indexer to allow access to the internal pixel buffer.
public this ( int index ) : int
index int
Результат int
		public int this[int index] {
			get {
				return pixels[index];
			}
			set {
				pixels[index] = value;				
			}
		}