User-196794355 posted
I just installed Visual Studio 2005 Release Candidate. I downloaded the TimeTracker application and it doesn't compile. One of the errors is below. Any ideas?
-Phil
Compilation Error
Description:
An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.
Compiler Error Message: CS1502: The best overloaded method match for 'string.Split(char[], int)' has some invalid arguments
Source Error:
|
Line 49: Line 50: char[] separator = new char[] { ',' }; Line 51: string[] substrings = userNames.Split(separator, true); Line 52: List<UserTotalDurationReport> list = new List<UserTotalDurationReport>(); Line 53:
|