Category Archives: Visual Studio 2015

Dialogue with Visual Studio – Performance Testing

Visual Studio is an Integrated Development Environment from Microsoft. This IDE provides features and tools to manage all phases of software life cycle. When it comes to performance of an application, most of the time we look outside for help … Continue reading

Posted in Book, Load Test, Microsoft, performance Test, Tools, Visual Studio 2015 | Tagged , | Leave a comment

Exploratory Test using Chrome plug-in

Exploratory testing is one of the feature Microsoft packaged in Microsoft Test Manager (MTM). MTM require license to Visual Studio Ultimate/Enterprise, which prevented many testers from using this feature. Exploratory testing allows the tester to test the application in an … Continue reading

Posted in TFS, Visual Studio 2015 | Tagged | Leave a comment

Visual Studio 2015: Analyzers

Live Code Analyzers provide live errors and warnings depends on the code analysis rule in the editor itself. It is integrated with NuGet packages, where we can add new rules using NuGet. When we type our code, analyzers start providing … Continue reading

Posted in Visual Studio 2015 | Tagged , | Leave a comment

Visual Studio 2015: DNX

DNX or the .NET Execution Runtime is a software development kit and runtime environment that has everything you need to build and run .NET applications for Windows, Mac and Linux. DNX is built for running cross-platform ASP.NET web applications; but … Continue reading

Posted in Visual Studio 2015 | Tagged | Leave a comment

Visual Studio 2015: C# 6.0 Null-conditional Operator

NullReference exception is one of the main exceptions most of the code blocks return. For handling the same, we will verify most of the object is null or not before accessing the properties or elements of the object. if (emps … Continue reading

Posted in C#, Visual Studio 2015 | Tagged , | Leave a comment