string.ToLower和TextInfo.ToLower之间的区别

vkr*_*rzv 6 .net c#

两者有什么区别?我什么时候应该使用它们?

crd*_*rdx 2

空无一人。

string.ToLowerTextInfo.ToLower幕后的呼唤。

来自 String.cs:

    // Creates a copy of this string in lower case. 
    public String ToLower() {
        return this.ToLower(CultureInfo.CurrentCulture); 
    }

    // Creates a copy of this string in lower case.  The culture is set by culture.
    public String ToLower(CultureInfo culture) { 
        if (culture==null) {
            throw new ArgumentNullException("culture"); 
        } 
        return culture.TextInfo.ToLower(this);
    } 
Run Code Online (Sandbox Code Playgroud)