CSharpGL.CullFaceState.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
        public override string ToString()
        {
            if (this.EnableCapacity)
            {
                return string.Format("Enabled glCullFace({0});", this.Mode);
            }
            else
            {
                return string.Format("Disabled glCullFace({0});", this.Mode);
            }
        }