.NET 版- 【 [System.String] 】
-
- ::Compare()
- >static int Compare(string strA, string strB)
- >static int Compare(string strA, string strB, bool ignoreCase)
- >static int Compare(string strA, string strB, System.StringComparison comparisonType)
- >static int Compare(string strA, string strB, cultureinfo culture, System.Globalization.CompareOptions options)
- >static int Compare(string strA, string strB, bool ignoreCase, cultureinfo culture)
- >static int Compare(string strA, int indexA, string strB, int indexB, int length)
- >static int Compare(string strA, int indexA, string strB, int indexB, int length, bool ignoreCase)
- >static int Compare(string strA, int indexA, string strB, int indexB, int length, bool ignoreCase, cultureinfo culture)
- >static int Compare(string strA, int indexA, string strB, int indexB, int length, cultureinfo culture, System.Globalization.CompareOptions options)
- >static int Compare(string strA, int indexA, string strB, int indexB, int length, System.StringComparison comparisonType)
-
- ::CompareOrdinal()
- >static int CompareOrdinal(string strA, string strB)
- >static int CompareOrdinal(string strA, int indexA, string strB, int indexB, int length)
-
- ::Concat()
- >static string Concat(System.Object arg0)
- >static string Concat(System.Object arg0, System.Object arg1)
- >static string Concat(System.Object arg0, System.Object arg1, System.Object arg2)
- >static string Concat(System.Object arg0, System.Object arg1, System.Object arg2, System.Object arg3)
- >static string Concat(Params System.Object[] args)
- >static string Concat(System.Collections.Generic.IEnumerable[string] values)
- >static string Concat(string str0, string str1)
- >static string Concat(string str0, string str1, string str2)
- >static string Concat(string str0, string str1, string str2, string str3)
- >static string Concat(Params string[] values)
- >static string Concat[T](System.Collections.Generic.IEnumerable[T] values)
-
- ::Copy()
- >static string Copy(string str)
-
- ::Equals()
- >static bool Equals(string a, string b)
- >static bool Equals(string a, string b, System.StringComparison comparisonType)
- >static bool Equals(System.Object objA, System.Object objB)
-
- ::Format()
- >static string Format(string format, System.Object arg0)
- >static string Format(string format, System.Object arg0, System.Object arg1)
- >static string Format(string format, System.Object arg0, System.Object arg1, System.Object arg2)
- >static string Format(System.IFormatProvider provider, string format, System.Object arg0)
- >static string Format(System.IFormatProvider provider, string format, System.Object arg0, System.Object arg1)
- >static string Format(System.IFormatProvider provider, string format, System.Object arg0, System.Object arg1, System.Object arg2)
- >static string Format(string format, Params System.Object[] args)
- >static string Format(System.IFormatProvider provider, string format, Params System.Object[] args)
-
- ::Intern()
- >static string Intern(string str)
-
- ::IsInterned()
- >static string IsInterned(string str)
-
- ::IsNullOrEmpty()
- >static bool IsNullOrEmpty(string value)
-
- ::IsNullOrWhiteSpace()
- >static bool IsNullOrWhiteSpace(string value)
-
- ::Join()
- >static string Join(string separator, Params string[] value)
- >static string Join(string separator, Params System.Object[] values)
- >static string Join(string separator, System.Collections.Generic.IEnumerable[string] values)
- >static string Join(string separator, string[] value, int startIndex, int count)
- >static string Join[T](string separator, System.Collections.Generic.IEnumerable[T] values)
-
- ::new()
- >string new(System.Char*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 value)
- >string new(System.Char*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 value, int startIndex, int length)
- >string new(System.SByte*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 value)
- >string new(System.SByte*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 value, int startIndex, int length)
- >string new(System.SByte*, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 value, int startIndex, int length, System.Text.Encoding enc)
- >string new(char[] value, int startIndex, int length)
- >string new(char[] value)
- >string new(char c, int count)
-
- ::ReferenceEquals()
- >static bool ReferenceEquals(System.Object objA, System.Object objB)
-
- ::Empty()
- >static string Empty {get;}
复制代码
|