1
vote
What is the best way to launch a web browser with a custom url from a C# application?
Check the Uri.IsWellFormedUriString static method.
It's cheaper than catching exception.
…
0
votes
Double/incomplete Parameter Url Encoding
Escaping of forward slahes and dots in path part of url is prohibited by security reason (althrough, it works in mono).
…
2
votes
Does resharper have problems with asp.net mvc?
Yep, current ReSharper version doesn't place references on MVC controllers (although, next one will).
In meantime you can mark controller class and action methods with ImplicitUse attribute …
0
votes
How do you show the Windows Explorer context menu from a C# application?
Take a look at this project http://www.codeproject.com/KB/miscctrl/FileBrowser.aspx
It's file browser in …
2
votes
Resharper gotchas
You can mark such properties by UsedImplicitly attribute and ReSharper will not suggest to remove it.
…
