Re: Can i Box values in arrays
- From: "Matt" <metehanIT@xxxxxxxxxxx>
- Date: 8 Jul 2005 14:09:29 -0700
Console.WriteLine(records[1]);
values is Recordset. Its not filling the array.
RecordSet Track1 = new RecordSet("Its raining",1);
RecordSet Track2 = new RecordSet("Amazing in the wild",2);
RecordSet Track3 = new RecordSet("Amazing in the milg",3);
RecordSet Track4 = new RecordSet("Amazing in the Sour",4);
RecordSet Track5 = new RecordSet("Amazing in the Hot",5);
Data d = new Data();
d.RecordAdd(Track1);
d.RecordAdd(Track2);
d.RecordAdd(Track3);
d.RecordAdd(Track4);
d.RecordAdd(Track5);
RecordSet[] records = new RecordSet[5];
records[0] = Track1;
records[1] = Track1;
d.GetRec2(records);
Console.WriteLine(records[1]);
.
- References:
- Can i Box values in arrays
- From: Matt
- Can i Box values in arrays
- Prev by Date: C# - parsing an XML string
- Next by Date: RE: referencing .tsp file
- Previous by thread: Re: Can i Box values in arrays
- Next by thread: Checking file type
- Index(es):
Relevant Pages
|