sscorlib.xml

来自「经典编程900例(C语言),主要是C基础知识」· XML 代码 · 共 1,244 行 · 第 1/4 页

XML
1,244
字号
        <member name="M:System.String.op_Equality(System.String,System.String)">
            <internalonly />
        </member>
        <member name="M:System.String.op_Inequality(System.String,System.String)">
            <internalonly />
        </member>
        <member name="P:System.String.Length">
            <summary>
            The number of characters in the string.
            </summary>
        </member>
        <member name="T:System.Single">
            <summary>
            The float data type which is mapped to the Number type in Javascript.
            </summary>
        </member>
        <member name="M:System.Single.ToExponential">
            <summary>
            Returns a string containing the value represented in exponential notation.
            </summary>
            <returns>The exponential representation</returns>
        </member>
        <member name="M:System.Single.ToExponential(System.Int32)">
            <summary>
            Returns a string containing the value represented in exponential notation.
            </summary>
            <param name="fractionDigits">The number of digits after the decimal point (0 - 20)</param>
            <returns>The exponential representation</returns>
        </member>
        <member name="M:System.Single.ToFixed">
            <summary>
            Returns a string representing the value in fixed-point notation.
            </summary>
            <returns>The fixed-point notation</returns>
        </member>
        <member name="M:System.Single.ToFixed(System.Int32)">
            <summary>
            Returns a string representing the value in fixed-point notation.
            </summary>
            <param name="fractionDigits">The number of digits after the decimal point from 0 - 20</param>
            <returns>The fixed-point notation</returns>
        </member>
        <member name="M:System.Single.ToPrecision">
            <summary>
            Returns a string containing the value represented either in exponential or
            fixed-point notation with a specified number of digits.
            </summary>
            <returns>The string representation of the value.</returns>
        </member>
        <member name="M:System.Single.ToPrecision(System.Int32)">
            <summary>
            Returns a string containing the value represented either in exponential or
            fixed-point notation with a specified number of digits.
            </summary>
            <param name="precision">The number of significant digits (in the range 1 to 21)</param>
            <returns>The string representation of the value.</returns>
        </member>
        <member name="M:System.Single.op_Implicit(System.Single)~System.Number">
            <internalonly />
        </member>
        <member name="T:System.ScriptLoader">
            <summary>
            Enables dynamic loading of a set of scripts references.
            </summary>
        </member>
        <member name="M:System.ScriptLoader.#ctor(System.String[])">
            <summary>
            Initializes an instance of a script loader with a
            set of script references. Each reference is treated
            as the URL of the script, and is loaded into the
            current document.
            </summary>
            <param name="scriptURLs">The set of script references to load.</param>
        </member>
        <member name="M:System.ScriptLoader.Dispose">
            <summary>
            Disposes the ScriptLoader instance.
            </summary>
        </member>
        <member name="M:System.ScriptLoader.Load(System.Boolean,System.Int32,System.EventHandler,System.EventHandler)">
            <summary>
            Starts the loading process. The specified callback is called
            upon completition of the loading process.
            </summary>
            <param name="loadInParallel">Whether the scripts should be loaded in parallel.</param>
            <param name="timeout">The number of milliseconds to allow the scripts to load before timing out.</param>
            <param name="loadedHandler">The callback to invoke upon loading of scripts.</param>
            <param name="errorHandler">The callback to invoke upon error loading scripts.</param>
        </member>
        <member name="T:System.Function">
            <summary>
            Equivalent to the Function type in Javascript.
            </summary>
        </member>
        <member name="T:System.UInt16">
            <summary>
            The ushort data type which is mapped to the Number type in Javascript.
            </summary>
        </member>
        <member name="M:System.UInt16.ToString(System.Int32)">
            <summary>
            Converts the value to its string representation.
            </summary>
            <param name="radix">The radix used in the conversion (eg. 10 for decimal, 16 for hexadecimal)</param>
            <returns>The string representation of the value.</returns>
        </member>
        <member name="M:System.UInt16.op_Implicit(System.UInt16)~System.Number">
            <internalonly />
        </member>
        <member name="T:System.SByte">
            <summary>
            The signed byte data type which is mapped to the Number type in Javascript.
            </summary>
        </member>
        <member name="M:System.SByte.ToString(System.Int32)">
            <summary>
            Converts the value to its string representation.
            </summary>
            <param name="radix">The radix used in the conversion (eg. 10 for decimal, 16 for hexadecimal)</param>
            <returns>The string representation of the value.</returns>
        </member>
        <member name="M:System.SByte.op_Implicit(System.SByte)~System.Number">
            <internalonly />
        </member>
        <member name="T:System.Math">
            <summary>
            Equivalent to the Math object in Javascript.
            </summary>
        </member>
        <member name="T:System.Int16">
            <summary>
            The short data type which is mapped to the Number type in Javascript.
            </summary>
        </member>
        <member name="M:System.Int16.ToString(System.Int32)">
            <summary>
            Converts the value to its string representation.
            </summary>
            <param name="radix">The radix used in the conversion (eg. 10 for decimal, 16 for hexadecimal)</param>
            <returns>The string representation of the value.</returns>
        </member>
        <member name="M:System.Int16.op_Implicit(System.Int16)~System.Number">
            <internalonly />
        </member>
        <member name="M:System.DHTML.DOMDocument.AttachEvent(System.String,System.Delegate)">
            <summary>
            Attaches an event handler to the specified event.
            </summary>
            <param name="eventName">The name of the event such as 'onload'.</param>
            <param name="handler">A delegate to the event handler that should be notified.</param>
            <returns></returns>
        </member>
        <member name="T:System.Script">
            <summary>
            The Script class contains various methods that represent global
            methods present in the underlying script engine.
            </summary>
        </member>
        <member name="M:System.Script.Alert(System.String)">
            <summary>
            Displays a message box containing the specified message text.
            </summary>
            <param name="message">The text of the message.</param>
        </member>
        <member name="M:System.Script.Alert(System.Boolean)">
            <summary>
            Displays a message box containing the specified value converted
            into a string.
            </summary>
            <param name="b">The boolean to display.</param>
        </member>
        <member name="M:System.Script.Alert(System.DateTime)">
            <summary>
            Displays a message box containing the specified value converted
            into a string.
            </summary>
            <param name="d">The date to display.</param>
        </member>
        <member name="M:System.Script.Alert(System.Number)">
            <summary>
            Displays a message box containing the specified value converted
            into a string.
            </summary>
            <param name="n">The number to display.</param>
        </member>
        <member name="M:System.Script.Confirm(System.String)">
            <summary>
            Prompts the user with a yes/no question.
            </summary>
            <param name="message">The text of the question.</param>
            <returns>true if the user chooses yes; false otherwise.</returns>
        </member>
        <member name="M:System.Script.Eval(System.String)">
            <summary>
            Enables you to evaluate (or execute) an arbitrary script
            literal. This includes JSON literals, where the return
            value is the deserialized object graph.
            </summary>
            <param name="s">The script to be evaluated.</param>
            <returns>The result of the evaluation.</returns>
        </member>
        <member name="M:System.Script.IsNull(System.Object)">
            <summary>
            Checks if the specified object is null.
            </summary>
            <param name="o">The object to test against null.</param>
            <returns>true if the object is null; false otherwise.</returns>
        </member>
        <member name="M:System.Script.IsNullOrUndefined(System.Object)">
            <summary>
            Checks if the specified object is null or undefined.
            The object passed in should be a local variable, and not
            a member of a class (to avoid potential script warnings).
            </summary>
            <param name="o">The object to test against null or undefined.</param>
            <returns>true if the object is null or undefined; false otherwise.</returns>
        </member>
        <member name="M:System.Script.IsUndefined(System.Object)">
            <summary>
            Checks if the specified object is undefined.
            The object passed in should be a local variable, and not
            a member of a class (to avoid potential script warnings).
            </summary>
            <param name="o">The object to test against undefined.</param>
            <returns>true if the object is undefined; false otherwise.</returns>
        </member>
        <member name="M:System.Script.Prompt(System.String)">
            <summary>
            Prompts the user to enter a value.
            </summary>
            <param name="message">The text of the prompt.</param>
            <returns>The value entered by the user.</returns>
        </member>
        <member name="M:System.Script.Prompt(System.String,System.String)">
            <summary>
            Prompts the user to enter a value, along with providing a default
            value.
            </summary>
            <param name="message">The text of the prompt.</param>
            <param name="defaultValue">The default value for the prompt.</param>
            <returns>The value entered by the user.</returns>
        </member>
        <member name="T:System.Decimal">
            <summary>
            The decimal data type which is mapped to the Number type in Javascript.
            </summary>
        </member>
        <member name="M:System.Decimal.ToString(System.Int32)">
            <summary>
            Converts the value to its string representation.
            </summary>
            <param name="radix">The radix used in the conversion (eg. 10 for decimal, 16 for hexadecimal)</param>
            <returns>The string representation of the value.</returns>
        </member>
        <member name="M:System.Decimal.op_Implicit(System.Decimal)~System.Number">
            <internalonly />
        </member>
        <member name="T:System.DHTML.Window">
            <summary>
            The window object represents the current browser window, and is the top-level
            scripting object.
            </summary>
        </member>
        <member name="M:System.DHTML.Window.AttachEvent(System.String,System.DHTML.DOMEventHandler)">
            <summary>
            Attaches an event handler to the specified event.
            </summary>
            <param name="eventName">The name of the event such as 'onload'.</param>
            <param name="handler">A function that should be called in response to the event.</param>
            <returns></returns>
        </member>
        <member name="P:System.DHTML.Window.Event">
            <summary>
            Provides information about the current event being handled.
            </summary>
        </member>
        <member name="T:System.Number">
            <summary>
            Equivalent to the Number type in Javascript.
            </summary>
        </member>
        <member name="M:System.Number.ToExponential">
            <summary>
            Returns a string containing the number represented in exponential notation.
            </summary>
            <returns>The exponential representation</returns>
        </member>
        <member name="M:System.Number.ToExponential(System.Int32)">
            <summary>
            Returns a string containing the number represented in exponential notation.
            </summary>
            <param name="fractionDigits">The number of digits after the decimal point (0 - 20)</param>
            <returns>The exponential representation</returns>
        </member>
        <member name="M:System.Number.ToFixed">
            <summary>
            Returns a string representing the number in fixed-point notation.
            </summary>
            <returns>The fixed-point notation</returns>
        </member>
        <member name="M:System.Number.ToFixed(System.Int32)">
            <summary>
            Returns a string representing the number in fixed-point notation.
            </summary>
            <param name="fractionDigits">The number of digits after the decimal point from 0 - 20</param>
            <returns>The fixed-point notation</returns>
        </member>
        <member name="M:System.Number.ToPrecision">
            <summary>
            Returns a string containing the number represented either in exponential or
            fixed-point notation with a specified number of digits.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?