Category Archives: C#

Code Hunt – Play and learn Coding

Those who have passion for coding and want to improve their Java or C# skills, code hunt is the best platform. Learn through play and move to advanced levels by sharpening your coding skills Features of code hunt https://www.codehunt.com/about.aspx Start … Continue reading

Posted in C#, Microsoft, Tools | 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

.NET Portable Library

We have been developing most of the dependent components as libraries in .Net stack. For developing a library, we use normally the Class Library project template and build it a .Net dll; which can be used by other applications too. … Continue reading

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

.NET Portability Analyzer

Portability of any application into various platforms is of high importance now. Do you want to check how portable your application or library or project developed in .NET is? Use the .NET Portability Analyzer from Visual Studio Gallery. Download and … Continue reading

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

Entity framework: Resolution of the dependency failed

When we try to generate a database instance using Entity framework and Factory methods, we have received the error “Resolution of the dependency failed“. Solution: Include the following libraries in the class, where we create the database instance Microsoft.Practices.EnterpriseLibrary.Common Microsoft.Practices.EnterpriseLibrary.Data … Continue reading

Posted in C# | Tagged | Leave a comment