Reporter | Daniel Hilgarth (DanielH) |
---|---|
Created | Feb 1, 2012 1:45:02 PM |
Updated | Mar 25, 2012 8:43:14 PM |
Priority | Normal |
Type | Bug |
Fix versions | No Fix versions |
State | Submitted |
Assignee | Evgeny Pasynkov (pasynkov) |
Subsystem | Code Analysis |
Affected versions | 6.1.1 |
Fixed in build | No Fixed in build |
I start with this line:
public class ReportFactory : IReportFactory
I hit Alt+Enter and choose "Implement members". ReSharper will generate the code and it looks like this:
public class ReportFactory : IReportFactory { public IEnumerable<ReportData> GetReport(int batchNumber) { throw new System.NotImplementedException(); } }
But it shows an error around the first opening curly bracket: "{ expected"
Please see screenshot
public class ReportFactory : IReportFactory
I hit Alt+Enter and choose "Implement members". ReSharper will generate the code and it looks like this:
public class ReportFactory : IReportFactory { public IEnumerable<ReportData> GetReport(int batchNumber) { throw new System.NotImplementedException(); } }
But it shows an error around the first opening curly bracket: "{ expected"
Please see screenshot