摘要:
How to compile c# in Microsoft's new Visual Studio Code? Since no one else said it, the short-cut to compile (build) a C# app in Visual Studio Code (V 阅读全文
摘要:
Does Dispose still get called when exception is thrown inside of a using statement? Yes, using wraps your code in a try/finally block where the finall 阅读全文
摘要:
Dependency Injection: Constructor vs Property Dependency injection is one of my favourite programming patterns for large projects. Among other things, 阅读全文
摘要:
MVC Autofac is always kept up to date to support the latest version of ASP.NET MVC, so documentation is also kept up with the latest. Generally speaki 阅读全文
摘要:
How do I get notifications for commits to a repository? I just found out by accident that you can easily manage to achieve this: fork the project (if 阅读全文
摘要:
How to undo a git merge squash? If you run git merge --squash <other-branch> the working tree and index are updated with what the result of the merge 阅读全文
摘要:
Why use a public method in an internal class? UPDATE: This question was the subject of my blog in September 2014. Thanks for the great question! There 阅读全文
摘要:
https://jqueryvalidation.org/documentation/ API Documentation You're probably looking for Options for the validate() method If not, read on. Throughou 阅读全文