Marcin Smółka

Avatar
  • 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...
    • 5 followers
    • 5 comments
    • 0 votes
  • 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 ...
    • 1 follower
    • 1 comment
    • 0 votes
  • 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 ...
    • 2 followers
    • 1 comment
    • 0 votes
  • Created

    ReSharper

    HelloI have some proporties that are only used as bindable to datagridview. But reshapar marks them as not used.
    • 2 followers
    • 3 comments
    • 0 votes
  • 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...
    • 2 followers
    • 1 comment
    • 0 votes
  • 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 ...
    • 2 followers
    • 2 comments
    • 0 votes
  • 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...
    • 2 followers
    • 2 comments
    • 0 votes