Primary focus technology and software development related topics which I learn and keep here for self reference.
Translate
Monday, June 22, 2009
Monday, June 08, 2009
CodeRush vs Resharper
Was given a task to answer a million dollar question that which is better Code Rush or Resharper. I collected some information and yet to find a judgmental answer for the question. Just sharing the links of people who are Commenting on the same:
Resharper vs Code Rush
1. Scott Hanselman:
2. Ash Tewari:
3. Derik Whittaker:
4. Ian's Blog:
5. .Net Geeks Blog:
6. StackOverflow:
7. David Hayden: Professional Web Developer:
8. MSDN Plugin:
9. CodeRush Xpress for C#:
10. Accidental Technologists:
11. Community for Plugins for Code Rush:
Below is the presentation which I gave to the team on this debatable topic:
Resharper vs Code Rush
1. Scott Hanselman:
2. Ash Tewari:
3. Derik Whittaker:
4. Ian's Blog:
5. .Net Geeks Blog:
6. StackOverflow:
7. David Hayden: Professional Web Developer:
8. MSDN Plugin:
9. CodeRush Xpress for C#:
10. Accidental Technologists:
11. Community for Plugins for Code Rush:
Below is the presentation which I gave to the team on this debatable topic:
Friday, May 15, 2009
Creating a Class Factory with C# and .NET. Free source code and programming help
To get a proper understanding of the Class factory and Abstract Factory Pattern, Click on the Link and Go through the Article:
CodeProject: Creating a Class Factory with C# and .NET. Free source code and programming help
CodeProject: Creating a Class Factory with C# and .NET. Free source code and programming help
Thursday, May 07, 2009
NAnt - Fundamentals
For the Build Process NAnt is a handy tool which can be used. The link below offers the fundamental concepts:
NAnt - Fundamentals
NAnt - Fundamentals
Monday, April 13, 2009
Monday, September 22, 2008
Cursors in SQL
Just an informative article about Cursors in SQL : http://www.mssqlcity.com/Articles/General/UseCursor.htm
Wednesday, July 30, 2008
Just for a change
मैं जिन्दाजी का साथ निभाता चला गया, मैं फिक्र तो धुंए में उडाता चला गया; बरबादियों का शोक मनाना फिजूल था, बरबादियों का जश्न मनाता चला गया
Wednesday, December 19, 2007
Monday, October 15, 2007
How to do Redim of an array in C#
Since there's no ReDim keyword in C# then what needs to be done is that we need to write a function which does the same using an array list, this would be type specific :
private ParameterValue[] ReDimArray(ref ParameterValue[] ParameterValue,int Index)
{
TempParameterValue= new ParameterValue[Index+1];
if (TempParameterValue !=null && ParameterValue!=null)
Array.Copy(ParameterValue,TempParameterValue,Math.Min(TempParameterValue.Length,Index));
ParameterValue = TempParameterValue;
return ParameterValue;
}
private ParameterValue[] ReDimArray(ref ParameterValue[] ParameterValue,int Index)
{
TempParameterValue= new ParameterValue[Index+1];
if (TempParameterValue !=null && ParameterValue!=null)
Array.Copy(ParameterValue,TempParameterValue,Math.Min(TempParameterValue.Length,Index));
ParameterValue = TempParameterValue;
return ParameterValue;
}
VB .Net to C# converter
Had a bunch of classes written in VB so to convert it in C# go to the link
VB to C# Converter
The results were good but i won't say it was 100% fool proof. Need to review the code after converting.
VB to C# Converter
The results were good but i won't say it was 100% fool proof. Need to review the code after converting.
Thursday, April 19, 2007
Tuesday, March 20, 2007
Monday, March 19, 2007
Risk Analysis in Mortgage Domain
This Article may help in understanding the Risk Analysis in Mortgage domain
DownLoad the Article
DownLoad the Article
Upload Functionality in ASP.Net
Have difficulties in building Upload Functionality in ASP.Net, the links below may solve some of your problems:
http://groups.google.com/group/microsoft.public.dotnet.framework.aspnet/browse_thread/thread/7165d8f1e8db580/9754d52b00a4a4eb?lnk=st&q=Directory.getfile&rnum=1#9754d52b00a4a4eb
http://www.aspheute.com/english/20000804.asp
http://www.4guysfromrolla.com/webtech/091201-1.shtml
http://www.upyourasp.net/articles/printme.aspx?aid=4
http://www.codetoad.com/asp.net_multiplefileupload.asp?
http://www.informit.com/guides/content.asp?g=dotnet&seqNum=125&rl=1
http://groups.google.com/group/microsoft.public.dotnet.framework.aspnet/browse_thread/thread/7165d8f1e8db580/9754d52b00a4a4eb?lnk=st&q=Directory.getfile&rnum=1#9754d52b00a4a4eb
http://www.aspheute.com/english/20000804.asp
http://www.4guysfromrolla.com/webtech/091201-1.shtml
http://www.upyourasp.net/articles/printme.aspx?aid=4
http://www.codetoad.com/asp.net_multiplefileupload.asp?
http://www.informit.com/guides/content.asp?g=dotnet&seqNum=125&rl=1
Search DataTable and DataSet for a Particular Value
Search the Datatable particular value
http://www.c-sharpcorner.com/Code/2004/March/DataSetsIn.NETP2.asp
Search dataset
http://geekswithblogs.net/azamsharp/archive/2005/10/25/58026.aspx
http://www.c-sharpcorner.com/Code/2004/March/DataSetsIn.NETP2.asp
Search dataset
http://geekswithblogs.net/azamsharp/archive/2005/10/25/58026.aspx
SubPrime Crash in the US Market
For the latest updates on the SubPrime market of US
Mortgage and Real Estate Video News
Mortgage and Real Estate Video News
Monday, January 29, 2007
NUNIT Implementation

Hi Guys
I happened to get an introduction to test driven programmin from my TL and did some research and have got few links to share with you:
http://msdn.microsoft.com/msdnmag/issues/04/04/default.aspx
Click here for a better explanation.
Sunday, October 29, 2006
Mortgage Product Details: Product Listing
Mortgage Product Details: Product Listing
Find the listing of all the mortgage products.
http://ww3.freddiemac.com/ds1/learn/mortgageproducts.nsf/frmAll?OpenForm&ExpandView&Seq=1
Find the listing of all the mortgage products.
http://ww3.freddiemac.com/ds1/learn/mortgageproducts.nsf/frmAll?OpenForm&ExpandView&Seq=1
Sunday, September 17, 2006
What's an Home Equity Line of Credit(HELOC)?
Mortgage Banking and .Net References
Reference Link:
http://www.dignitymortgage.com/Programs/Home_equity_lines_of_credit.htm#PlanningTool
Equity is the amount of house owned by the borrower.
Reference Link:
http://www.dignitymortgage.com/Programs/Home_equity_lines_of_credit.htm#PlanningTool
Equity is the amount of house owned by the borrower.
Subscribe to:
Posts (Atom)