Member Example

// Using property of System.String
string lengthOfString = "How long?";
lengthOfString.Length           // => 9
// Using methods of System.String
lengthOfString.Contains("How"); // => true
Comments