OpenTK.DisplayDevice.ToString C# (CSharp) Method

ToString() public method

Returns a System.String representing this DisplayDevice.
public ToString ( ) : string
return string
        public override string ToString()
        {
            return String.Format("{0}: {1} ({2} modes available)", IsPrimary ? "Primary" : "Secondary",
                Bounds.ToString(), available_resolutions.Count);
        }