aghausman

Stories submitted by aghausman

Setting up SVN on Windows(www.aghausman.net)

submitted by aghausmanaghausman(110) 2 years, 3 months ago

Subversion is ultimately one of the best source control option we have in today’s world. it has very light instance running on Server and of course it is FREE. To access the Subversion repository on the client machine we have multiple options. If we want to use shell integrated UI (means we can call your source control options in our windows explorer), we can use TortoiseSVN but being a developer based on Visual Studio it always looks good to get my source control on Solution Explorer inside Visual Studio world and for that we have Visual SVN which off cost and AnkhSVN which is FREE. One time server configuration is needed on almost every server software so as with SVN. After downloading and installing SVN following configuration is needed in order to work properly. By the way, we are assuming that you download the setup from CollabNet. read more...

add a comment |category: |Views: 8

tags: another

Getting started with Unit Testing in C#(aghausman.net)

submitted by aghausmanaghausman(110) 2 years, 9 months ago

In this post, I will explain you how can we write a unit test in c#. It is a basic guideline for those who wants a quick start. Unit testing is an integral part of any software that is developed. It is an advantage which most of us are either not aware of or we are neglecting it. It actually helps a developer to write error free code. read more...

add a comment |category: |Views: 32

tags: another

Get Countries Name in .Net(aghausman.net)

submitted by aghausmanaghausman(110) 2 years, 10 months ago

In this post, I will explain you how can we get the countries name filled in any collection using .net without using any database. It is a regular task, which we all as developers did some past day but the difference is we used database table or xml file to hold the country names. But .net framework provide us with all the countries information in Globalization namespace. read more...

2 comments |category: |Views: 489

tags: another