This blog post is part of C# 6.0 Features Series.
As we know there are lots of small features added in C# 6.0 and Null conditional operator is one of them. You can check null with specific conditions with Null conditional operator and this will definitely increase productivity of developers and there will be less lines of code.
Let’s create example. Following are two classes I have created...
Tuesday, December 30, 2014
Sunday, December 28, 2014
C# 6.0–Static class using statement
This blog post is part of C# 6.0 Features Series.
C# 6.0 version introduced lot of small features and one of that features is using feature. Now with C# 6.0 you can use using statement which was not possible in earlier versions of C#. Following is a example of using statement in C#.
using static System.Console;
namespace StaticClassUsing
{
class Program
{
static...
C# 6.0–Auto implemented property initializer
This blog post is part of C# 6.0 Features Series.
As we all know C# 6.0 is there in preview mode and Microsoft has added few small features to C# 6.0 which helps lot while you develop application. In today’s blog post we are going to learn one more small feature called “Auto implemented property initializers”.
Developers working on C# used a automatic properties a lot and there has been...
Saturday, December 27, 2014
Continuous Integration with visualstudio.com,Unit Test(Test Driven Development) and TFS
CodeProject
Before some time I have written a blog post about Continuous integration with visualstudio.com and TFS and It goes quite a good number visits and lots of people are asking for unit test integration with continuous integration too. Today one of colleague also asked for the same. I thought...
Friday, December 26, 2014
Colorized tooltip in visual studio 2015
Visual studio 2015 provides lots of new features and Colorized tooltip is one of the features that I really like. As we all know that Visual studio supports automatic collapse of various language constructs like classes, methods. When you mouse hover it automatically show hidden code presented...
C# 6.0–nameof Operator
This blog post is part of C# 6.0 Features Series.
Microsoft announced the new version of C# 6.0 at the day of visual studio connect event on November. They have not added any big features to C# 6.0 but they have listened to community and added few small features which comes really handy. One of the that is nameof operator. In this blog post we learn why nameof operator is very useful.
Let’s...
Thursday, December 25, 2014
Custom Windows Layout in Visual studio 2015
Visual studio 2015 preview has been released by Microsoft before some days. So I recently got installed in my machine. It contains a bunch of new features and we are going to explore it one by one. Custom layout windows in visual studio 2015 is a one of the nice features in list. In this blog post we are going to learn about custom windows layout in Visual studio 2015.
As we all use different kind...
Sunday, December 14, 2014
Continuous integration with visualstudio.com and TFS
CodeProject
As a developer, we all are using some kind of source control provider to maintain versions of our source code. But another aspects of source control to is to make sure that code committed in source code repositories are perfect and it will not break the build of particular software. That’s why Continuous integration is very much popular this days.
What is Continuous Integration:
As...
Saturday, December 13, 2014
1.5 million page views for my blog- dotnetjalps.com
Ahh, still it’s hard to believe that my blog has achieved this milestone. Yeah my blog got completed 1.5 millions page views. So first all, thank you readers without you guys it’s not possible to achieve such a big milestone.
When I started my blog I was not never sure what I am going to do with this blog. But then it’s become integral part of my life. Now I can’t imaging my self without my blog....