nweinIT
- Total activity 7
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 3
-
nweinIT created a post, Code inspection: assembly directive is not allowed in .svc file
The intellisense in VS allows having either @ServiceHost and/or @Assembly in an .svc file, however resharper is always complaining about the Assembly directive, stating that “Assembly directive is ... -
nweinIT created a post, C# 7 pattern matching for dynamic types
Consider the following code: Microsoft.Office.Interop.Excel.Range myRange = this.Cells[1,1];var myString = myRange.Value2 as string; if (myString != null){ ...} R# prompts me to 'Use pattern matchi... -
nweinIT created a post, Possible 'null' assignment to entity with '[NotNull]' attribute even when null check is explicitly specified (dynamic type)
Consider the following code (this is not production code, just used for demonstration): Snippet private void Test() { dynamic selection = ExcelApp.Selection; if (selection != null && Marsha...