Translate

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;
}

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.

Monday, March 19, 2007

Risk Analysis in Mortgage Domain

This Article may help in understanding the Risk Analysis in Mortgage domain
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

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

SubPrime Crash in the US Market

For the latest updates on the SubPrime market of US
Mortgage and Real Estate Video News

Monday, January 29, 2007