Name the namespace used for Microsoft Visual Studio Unit Testing ?
Namespace used for Microsoft Visual Studio Unit Testing –Microsoft.VisualStudio.TestTools.UnitTesting
Example in C# :
using System; using System.Text; using System.Collections.Generic; using System.Linq; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace TestProjectMath { [TestClass] public class UnitTestMath { } }
Shadowing in .NET When a method is defined in base class are not overridable and one needs to provide different implementation for the same in derived class. […]
C# Partial Methods Partial methods can be defined in one part of a type declaration and implemented in another. The implementation is optional; if no […]
New features in SQL 2005 in brief: SQL Server 2005 as .NET runtime host: enhancing security, reliability, and performance Writing procedures, functions, and triggers in […]