It's not much long Microsoft started support for using git with Visual Studio(since last year, 2013). And now, recently, it added some core updates on its git support as mentioned on techcrunch. I am not using visual studio/.NET platform since a while and thus wasn't aware of the latest staffs going on. I explored this integration of git with visual studio recently on free … [Read more...] about Beginners Guide To Use Git With Visual Studio
.net
Getting Started With Asp.NET MVC 4 And Entity Framework
Asp.NET MVC framework has upgraded itself rapidly and a lot of whole features are being added/supported. I lastly worked with Asp.NET MVC 3 With LinQ Based Web Application. While checking out the 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 Framework based web … [Read more...] about Getting Started With Asp.NET MVC 4 And Entity Framework
How To Use WPF DataGrid in C#.NET
WPF datagrid didn't seem to be that much handy or easy to use to me as like win-form data-grid. However, that doesn't mean it's a lot hard to implement it. Though I didn't able to dig much into this, I will 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
Using TFS Task Management In Visual Studio
Today, we will see how we can interact with the TFS task management system inside the visual studio integrated environment. This tutorial will cover how we can 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 … [Read more...] about Using TFS Task Management In Visual Studio
How To Work With Multithreaded Programming In C#.NET Application
While working with desktop application development, we may sometimes required to work with Multithreaded programming. It can also help in optimizing the performance of the software as it make most usage of the CPU core(s) and thus providing better throughput/results. We refer to this type of implementation as 'multi-tasking' also. As in such case, our application will be able … [Read more...] about How To Work With Multithreaded Programming In C#.NET Application