sscorlib.xml

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

XML
1,244
字号
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>sscorlib</name>
    </assembly>
    <members>
        <member name="T:System.RegularExpression">
            <summary>
            Equivalent to the RegExp type in Javascript.
            </summary>
        </member>
        <member name="T:System.Object">
            <summary>
            Equivalent to the Object type in Javascript.
            </summary>
        </member>
        <member name="M:System.Object.GetType">
            <summary>
            Retrieves the type associated with an object instance.
            </summary>
            <returns>The type of the object.</returns>
        </member>
        <member name="M:System.Object.Parse(System.String)">
            <summary>
            Enables you to parse an object graph using the eval method
            built into the script engine.
            </summary>
            <param name="s">The literal expression to be parsed.</param>
            <returns>The resulting object graph.</returns>
        </member>
        <member name="M:System.Object.ToString">
            <summary>
            Converts an object to its string representation.
            </summary>
            <returns>The string representation of the object.</returns>
        </member>
        <member name="M:System.Object.ToLocaleString">
            <summary>
            Converts an object to its culture-sensitive string representation.
            </summary>
            <returns>The culture-sensitive string representation of the object.</returns>
        </member>
        <member name="T:System.Int64">
            <summary>
            The long data type which is mapped to the Number type in Javascript.
            </summary>
        </member>
        <member name="M:System.Int64.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.Int64.op_Implicit(System.Int64)~System.Number">
            <internalonly />
        </member>
        <member name="M:System.DHTML.DOMElement.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="M:System.DHTML.Document.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="T:System.Exception">
            <summary>
            Equivalent to the Error type in Javascript.
            </summary>
        </member>
        <member name="T:System.Double">
            <summary>
            The double data type which is mapped to the Number type in Javascript.
            </summary>
        </member>
        <member name="M:System.Double.ToExponential">
            <summary>
            Returns a string containing the value represented in exponential notation.
            </summary>
            <returns>The exponential representation</returns>
        </member>
        <member name="M:System.Double.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 from 0 - 20</param>
            <returns>The exponential representation</returns>
        </member>
        <member name="M:System.Double.ToFixed">
            <summary>
            Returns a string representing the value in fixed-point notation.
            </summary>
            <returns>The fixed-point notation</returns>
        </member>
        <member name="M:System.Double.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.Double.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.Double.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.Double.op_Implicit(System.Double)~System.Number">
            <internalonly />
        </member>
        <member name="T:System.DateTime">
            <summary>
            Equivalent to the Date type in Javascript.
            </summary>
        </member>
        <member name="M:System.DateTime.#ctor">
            <summary>
            Creates a new instance of DateTime initialized to the current time.
            </summary>
        </member>
        <member name="M:System.DateTime.#ctor(System.Int32)">
            <summary>
            Creates a new instance of DateTime initialized from the specified number of milliseconds.
            </summary>
            <param name="milliseconds">Milliseconds since January 1st, 1970.</param>
        </member>
        <member name="M:System.DateTime.#ctor(System.String)">
            <summary>
            Creates a new instance of DateTime initialized from parsing the specified date.
            </summary>
            <param name="date"></param>
        </member>
        <member name="M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32)">
            <summary>
            Creates a new instance of DateTime.
            </summary>
            <param name="year">The full year.</param>
            <param name="month">The month (0 through 11)</param>
            <param name="date">The day of the month (1 through # of days in the specified month)</param>
        </member>
        <member name="M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Creates a new instance of DateTime.
            </summary>
            <param name="year">The full year.</param>
            <param name="month">The month (0 through 11)</param>
            <param name="date">The day of the month (1 through # of days in the specified month)</param>
            <param name="hours">The hours (0 through 23)</param>
        </member>
        <member name="M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Creates a new instance of DateTime.
            </summary>
            <param name="year">The full year.</param>
            <param name="month">The month (0 through 11)</param>
            <param name="date">The day of the month (1 through # of days in the specified month)</param>
            <param name="hours">The hours (0 through 23)</param>
            <param name="minutes">The minutes (0 through 59)</param>
        </member>
        <member name="M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Creates a new instance of DateTime.
            </summary>
            <param name="year">The full year.</param>
            <param name="month">The month (0 through 11)</param>
            <param name="date">The day of the month (1 through # of days in the specified month)</param>
            <param name="hours">The hours (0 through 23)</param>
            <param name="minutes">The minutes (0 through 59)</param>
            <param name="seconds">The seconds (0 through 59)</param>
        </member>
        <member name="M:System.DateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Creates a new instance of DateTime.
            </summary>
            <param name="year">The full year.</param>
            <param name="month">The month (0 through 11)</param>
            <param name="date">The day of the month (1 through # of days in the specified month)</param>
            <param name="hours">The hours (0 through 23)</param>
            <param name="minutes">The minutes (0 through 59)</param>
            <param name="seconds">The seconds (0 through 59)</param>
            <param name="milliseconds">The milliseconds (0 through 999)</param>
        </member>
        <member name="P:System.DateTime.Now">
            <summary>
            Returns the current date and time.
            </summary>
        </member>
        <member name="P:System.DateTime.Today">
            <summary>
            Returns the current date with the time part set to 00:00:00.
            </summary>
        </member>
        <member name="T:System.DHTML.Selection">
            <summary>
            Represents the active selection, which is a highlighted block of text, and/or other elements in the document on which a user or a script
            can carry out some action.
            </summary>
        </member>
        <member name="T:System.Type">
            <summary>
            The Type data type which is mapped to the Function type in Javascript.
            </summary>
        </member>
        <member name="T:System.Stack">
            <summary>
            The Stack data type which is mapped to the Array type in Javascript.
            </summary>
        </member>
        <member name="T:System.DHTML.Screen">
            <summary>
            The screen object represents information about the current desktop.
            </summary>
        </member>
        <member name="T:System.String">
            <summary>
            Equivalent to the String type in Javascript.
            </summary>
        </member>
        <member name="F:System.String.Empty">
            <summary>
            An empty zero-length string.
            </summary>
        </member>
        <member name="M:System.String.CharAt(System.Int32)">
            <summary>
            Retrieves the character at the specified position.
            </summary>
            <param name="index">The specified 0-based position.</param>
            <returns>The character within the string.</returns>
        </member>
        <member name="M:System.String.CharCodeAt(System.Int32)">
            <summary>
            Retrieves the character code of the character at the specified position.
            </summary>
            <param name="index">The specified 0-based position.</param>
            <returns>The character code of the character within the string.</returns>
        </member>
        <member name="M:System.String.Concat(System.String[])">
            <summary>
            Concatenates a set of individual strings into a single string.
            </summary>
            <param name="strings">The sequence of strings</param>
            <returns>The concatenated string.</returns>
        </member>
        <member name="M:System.String.DecodeURI">
            <summary>
            Returns the unencoded version of a complete encoded URI.
            </summary>
            <returns>The unencoded string.</returns>
        </member>
        <member name="M:System.String.DecodeURIComponent">
            <summary>
            Returns the unencoded version of a single part or component of an encoded URI.
            </summary>
            <returns>The unencoded string.</returns>
        </member>
        <member name="M:System.String.EncodeURI">
            <summary>
            Encodes the complete URI.
            </summary>
            <returns>The encoded string.</returns>
        </member>
        <member name="M:System.String.EncodeURIComponent">
            <summary>
            Encodes a single part or component of a URI.
            </summary>
            <returns>The encoded string.</returns>
        </member>
        <member name="M:System.String.EndsWith(System.Char)">
            <summary>
            Determines if the string ends with the specified character.
            </summary>
            <param name="ch">The character to test for.</param>
            <returns>true if the string ends with the character; false otherwise.</returns>
        </member>
        <member name="M:System.String.EndsWith(System.String)">
            <summary>
            Determines if the string ends with the specified substring or suffix.
            </summary>
            <param name="suffix">The string to test for.</param>
            <returns>true if the string ends with the suffix; false otherwise.</returns>
        </member>
        <member name="M:System.String.Escape">
            <summary>
            Encodes a string by replacing punctuation, spaces etc. with their escaped equivalents.
            </summary>
            <returns>The escaped string.</returns>
        </member>
        <member name="M:System.String.Unescape">
            <summary>
            Decodes a string by replacing escaped parts with their equivalent textual representation.
            </summary>
            <returns>The unescaped string.</returns>
        </member>

⌨️ 快捷键说明

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