You can always decompile the string.Trim() method to find out also:



public string Trim()
{
return this.TrimHelper(2);
}

private string TrimHelper(int trimType)