Type Summary

						public sealed class String : IComparable, ICloneable,
                           IConvertible, IEnumerable
{
  // Constructors
     unsafe public String (char* value);
     unsafe public String (char* value, int startIndex,
                          int length);
     public String (char c, int count);
     public String (char[] value);
     public String (char[] value, int startIndex,
                   int length);
  MS
						unsafe public String (sbyte* value);
MS CF
						unsafe public String (sbyte* value, int startIndex,
                           int length);
  CF
						unsafe public String (sbyte* value, int startIndex,
                          int length, Encoding enc);

  // Fields
     public static readonly string Empty = "";

  // Properties
     public char this[int index] { get; }
     public int Length { get; }

  // Methods
     public object Clone ();
     public static int Compare (string strA,
                               int indexA, string ...

Get .NET Framework Standard Library Annotated Reference, Volume 1: Base Class Library and Extended Numerics Library now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.