The namespace of String.Remove() method is System. Similarly the assembly of String.Remove() method is System.Runtime.dll. Remove() is public built-in method which mean it can be accessible anywhere in code with string class. String.Remove() method is used to get a new string after removing all the characters from specified begin Index till given length. If length is not specified, it removes all the characters after begin Index.
In below example, we have string with named s1 which have value Mango. string s2 = s1.Remove(2, 3); here we are removing characters from index 2 and here 3 mean we are remove 3 characters from index 2 to onward. s2 is storing a new string after the removal of characters.