Using code analysis in Visual Studio 2013

Visual Studio code analysis checks if your code is following programming standards. If you are a beginner developer you might have not even known coding standards exists. Code Analysis tools in Visual Studio Premium and Visual Studio Ultimate enable developers to check their code for quality issues as they write it. - Microsoft Documentation By default Visual Studio only checks for warnings and build errors and does not do code analysis while building....

July 19, 2015 · 2 min · 230 words · Fahad

How to make a dll in c#

Making a dll file is very useful if you need your code to be easily used in multiple places. Ex. Let's say you have a genius idea on how to add two numbers, but you don't want to make the code public in fear of someone stealing your idea and taking credit. Using a dll file is the most common and efficient way to achieve that. A DLL is a library that contains code and data that can be used by more than one program at the same time....

July 3, 2015 · 3 min · 548 words · Fahad

Building C# applications using the developer command prompt

Most people use Visual Studio to run their C# programs, and don't know that they can achieve the same result by using the developer command prompt. The developer cmd prompt can be found in C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Tools\Shortcuts, this is for visual studio 2013. The benefits of the developer cmd prompt from the regular windows cmd prompt is that it has been pre-configured to provide you with all of the necessary ....

June 20, 2015 · 2 min · 318 words · Fahad