100days
- Total activity 4
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 2
-
Created Edit File Template Quicklist Issue
I'm trying to remove items from the file template quick list, and I'm having some trouble with it. When I click and drag the item out of the quicklist, it creates a copy of the item wherever my mo... -
Created R# 9 C# - formatting "if" statements w/multiple conditions
I'm trying to configure R# to format this:if((something != null) && (something != "something")){ ...}to this:if( (something != null) && (something != "something") ){ ...}But not have it for...