CSharpGL.Renderbuffer.ToString C# (CSharp) Method

ToString() public method

Bind a named renderbuffer object. Unbind this renderbuffer object.
public ToString ( ) : string
return string
        public override string ToString()
        {
            return string.Format("{0}: [w:{1}, h:{2}] {3}", this.GetType().Name, this.Width, this.Height, this.BufferType);
        }