using VS2005 and VA 1619 I added the following function to a C# file:
void testStringFunctions()
{
string condStr;
condStr = "hello world";
condStr = condStr.Trim();
condStr.PadLeft(4, '.');
condStr.StartsWith("hello");
banana = 2;
}
the only thing that VA underlined was "banana". I am wondering if something further up the file is confusing VA.
Due to some other problems with underlining of mistyped symbols in C# this has been disabled in C# and VB in VA 1624 while we try to get it working correctly:
case=509