sorencoder
- Total activity 27
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 5
- Subscriptions 8
-
-
sorencoder created a post, AnsweredDebugging async methods
Given this code: class Program{ static async Task Main(string[] args) { int contextVariable = 1; await Task.Delay(100); int contextVariable2 = 2; await Task.Delay(... -
-
sorencoder created a post, AnsweredNo more nightly builds for Rider?
I cannot see the nightly build option in toolbox app. Have you stopped shipping them? -
sorencoder commented, -
sorencoder commented, -
sorencoder created a post, AnsweredVisual Studio color schema doesn't color get and set as keywords
'get' and 'set' in properties are keywords and should be colored as keywords. How can I fix this? -
sorencoder commented, -
sorencoder created a post, AnsweredHow to configure Rider to break line after => in method calls
I want my code to be like this: Entities.ForEach((UnityEngine.RectTransform transform) =>{ }); But rider automatically reformats the code to this: Entities.ForEach( (UnityEngine.RectTransform... -