The general pattern used by the tools and recognized by Visual Studio is:
fileName(startLine,startColumn[,endLine,endColumn]): error errorCode: errorMessageAn example message would look like:
C:\Source\path\to\solution\project\FileWithCompileError.cs(154,20,154,26): error CS0103: The name 'result' does not exist in the current contextThe endLine and endColumn are optional; presumably not all errors can be pinpointed to a range so accurately.
No comments:
Post a Comment