It's not very long since Microsoft started support for using git with Visual Studio(since last year, 2013). Recently, it added some core updates to its GIT support, as mentioned on TechCrunch. I have not been using the visual studio/.NET platform for a while and thus wasn't aware of the latest stuff. I explored this integration of git with Visual Studio recently in my free … [Read more...] about Beginners Guide To Use Git With Visual Studio
Asp.NET MVC framework has upgraded itself rapidly, and a lot of whole features are being added/supported. I last worked with Asp.NET MVC 3 with LinQ Based Web Application. While checking out MVC 4, I got familiar with Entity Framework and MVC 4's new look and feel, etc. That's why I have decided to share my first experience with Asp.NET MVC 4 And Entity … [Read more...] about Getting Started With Asp.NET MVC 4 And Entity Framework
WPF Datagrid didn't seem to be that handy or easy to use to me like win-form data-grid. However, that doesn't mean it's a lot hard to implement it. Though I wasn't able to dig much into this, I would like to share my gathered knowledge while basic practicing that should help you implement a simple WPF and c# #-based data-grid application easily. I will also show how to add … [Read more...] about How To Use WPF DataGrid in C#.NET
Today, we will see how to interact with the TFS task management system inside the Visual Studio integrated environment. This tutorial will cover how to create a task, explore/find tasks, create team queries for filter tasks, change states and make necessary updates on the tasks. I am using Visual Studio 2010, which has the team client within it. If you are using vs 2008, then … [Read more...] about Using TFS Task Management In Visual Studio
While developing desktop applications, we may sometimes be required to work with Multithreaded programming. This can also help optimize the software's performance, as it makes the most of the CPU core(s) and thus provides better throughput/results. We also refer to this type of implementation as 'multi-tasking'. In such a case, our application will be able to do different types … [Read more...] about How To Work With Multithreaded Programming In C#.NET Application