I think this bug is still not fixed. I uninstalled my previous version and installed this latest 3.0.10340 version. I'm running VS 2008 SP1 on Windows7 x64.
Notice that the "currentString" param is present in the doc comments.
/// <summary>
/// Chops the trim.
/// </summary>
/// <param name="currentString">The current string.</param>
/// <param name="length">The length.</param>
/// <returns></returns>
public static string ChopTrim( this string currentString, int length )
{
if ( string.IsNullOrEmpty( currentString ) )
{
return currentString;
}
return currentString.Trim().Chop( length );
}
Dave Black, MCPD, MCTS