Home > C# (Page 2)

Web Developer Pre-release Testing Checklist

When we talk about an emerging full-stack web developer, there are certain things that are bound to be missed owing to a developer background and a programmer mindset. A checklist with all things that should be considered before release to QA or launch will help a developer to deliver a not

This Article is TAGGED in , , , , , , . Read more

Flowchart in Software Engineering / Testing

What is FlowchartA pictorial representation of an algorithm is called a 'Flowchart'. In flowchart, the steps in the algorithm are represented in the form of different shapes of boxes and the logical flow is indicated by interconnecting arrows. The boxes are used to represent different operations and the arrows are

This Article is TAGGED in , . Read more

Interface in C#

An interface is a contract contains methods, properties, events and indexers. A class or structure that implements the interface must implement all the members of the interface. The interface defines ‘what’ part of the contract and classes or structure that implements the interface defines ‘how’ part of the contract. Methods, properties,

This Article is TAGGED in . Read more

Simple way to generate connection string from text file

Common issue generally every developer faces in his initial days of development is how to generate connection string that connects my application to the database. Especially when we don't have sql management studio installed or if we are facing licensing issues.Well, a text file can come to a rescue.  To overcome such

This Article is TAGGED in , , , , , , . Read more

What is Null Conditional Operator?

"The null conditional operator prevents the execution of a method if the caller object is null."Explaination:Whether you are novice or experienced developer you must be familiar with null reference exceptions. You must be tired of writing null checking code to make sure your application handles null references correctly. The null-conditional

This Article is TAGGED in , . Read more

Testing Routing and URL Generation in ASP.NET MVC

In ASP.NET MVC, getting your routes setup properly can be tricky if you have a lot of routes. Whenever something is tricky, and might be touched often, having a set of unit tests around it can very helpful to ensure you aren't breaking it when you make changes. Lots of

This Article is TAGGED in , , , , , . Read more

Difference between build, Rebuild and Clean Solution.

Build solution menu: - This will perform an incremental build. In other words it will only build code files which have changed. If they have not changed those files will not touched.  Rebuild solution menu: - This will delete all current compiled files (i.e. exe and dll's) and will build everything

This Article is TAGGED in , . Read more