This document discusses C# .NET strings and various methods that can be used on string variables including trim, contains, replace, and substring. Trim removes unwanted characters from the start and end of a string. Contains checks if a substring is within a string. Replace replaces occurrences of one substring with another. Substring extracts a portion of a string starting from a specified index for a given length.