Marcin Smółka
- Total activity 21
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 8
-
Created Space after comma with line break
I'd like to ask how to remove space after comma, when there is line break so e.g in Enum public enum Test { First = 1, Second = 2, } After comma there is a white space on code cleanup. I w... -
Created How to achieve formatting like Visual Studio 2015 collection initializers:
I would like to format code during code cleanup in following way:var z = new B(){}var collectionVariable = new List<int>{}var arrayVariable = new int[]{}All options I found this time allows format ... -
Created Function is recursive on all paths
Can anybody expain me this issue. I cannot find any explanation anywhere. Nor in help neither internet? I have peace of code with this warning. But1. It is not shown in code issues window.2. It is ... -
Created ReSharper
HelloI have some proporties that are only used as bindable to datagridview. But reshapar marks them as not used. -
Created Rename pattern/dictionary
Is there any way to tell Resharper how it should suggest renaming, eg. based on some dictionary?Here is an example:I have enum with name: DTT_TEXTCOLORResharper suggest it to: DttTextcolorI would l... -
Created LINQ options
Is there any way to tell Resharper to use rather extensions not pure LINQ?I prefer notationlist.Where(w=> w == 1).Select(w=>w.ToString())instead offrom w in list where w == 1 select w.ToString()If ... -
Created Different rules for private event declaration
Hello, I recently bought rehsarper and now trying to make it work with my own rules. I have for now one issue:Private event declaration rule. Basically my codding standard looks:private event Cance...