Click here to Skip to main content
15,896,111 members
Home / Discussions / C#
   

C#

 
GeneralNeed help with translation from VB.Net Pin
royg774-May-05 19:53
royg774-May-05 19:53 
GeneralRe: Need help with translation from VB.Net Pin
Mathew Hall4-May-05 20:27
Mathew Hall4-May-05 20:27 
GeneralRe: Need help with translation from VB.Net Pin
royg774-May-05 22:25
royg774-May-05 22:25 
GeneralRe: Need help with translation from VB.Net Pin
Mathew Hall4-May-05 23:52
Mathew Hall4-May-05 23:52 
GeneralRe: Need help with translation from VB.Net Pin
royg775-May-05 1:02
royg775-May-05 1:02 
QuestionCrystal Report throw and exception?? Pin
MJay4-May-05 18:55
MJay4-May-05 18:55 
AnswerRe: Crystal Report throw and exception?? Pin
MBGeorge4-May-05 19:13
MBGeorge4-May-05 19:13 
GeneralC# ArrayList Pin
Mitchell McCollum4-May-05 18:00
Mitchell McCollum4-May-05 18:00 
In the code below I created a class(Listings) to hold three stings.
I Also have a ArrayList of the class.

I can add items, can see the data in the watch window and I can use a foreach and see all elements of the arraylist, but I cant figure out how to read the data in the first element of the arraylist.

Thanks for your help.

Mitchell



public class TestArrayList
{
public TestArrayList()
{}

private ArrayList arrListings = new ArrayList();

public void ClearList()
{
arrListings.Clear();
}

public void AddListing(string Name, string Address, string Phone)
{
arrListings.Add(new Listings(Name,Address,Phone));
}

public string getFirstListing()
{
return "?"; //What here to return Name for First item in ArrLst?
}

public class Listings
{
private string x_name;
private string x_address;
private string x_phone;

public Listings()
{}

public Listings(string Name, string Address, string Phone)
{
x_name=Name;
x_address=Address;
x_phone=Phone;
}

public string Name
{
get {return x_name;}
set {x_name = value;}
}
public string Address
{
get {return x_address;}
set {x_address = value;}
}
public string Phone
{
get {return x_phone;}
set {x_phone = value;}
}
}//end listings structure

}
}

GeneralRe: C# ArrayList Pin
Mathew Hall4-May-05 18:38
Mathew Hall4-May-05 18:38 
GeneralSVG DOM Pin
Victor Boctor4-May-05 16:28
Victor Boctor4-May-05 16:28 
GeneralScreen Scraping Pin
Anonymous4-May-05 16:26
Anonymous4-May-05 16:26 
GeneralRe: Screen Scraping Pin
keith maddox5-May-05 5:42
keith maddox5-May-05 5:42 
Generalplay movi file by c# Pin
abugalib4-May-05 15:22
abugalib4-May-05 15:22 
GeneralRe: play movi file by c# Pin
MoustafaS5-May-05 0:55
MoustafaS5-May-05 0:55 
Generalmultiple same taskbarnotifier in C# Pin
dwark1064-May-05 14:57
dwark1064-May-05 14:57 
GeneralAdding HTML Files to Solution Pin
C.S.4-May-05 14:38
C.S.4-May-05 14:38 
GeneralHelp with class hierarchy Pin
ICustomTypeDescriptor4-May-05 14:07
ICustomTypeDescriptor4-May-05 14:07 
GeneralRe: Help with class hierarchy Pin
Marc Clifton4-May-05 14:52
mvaMarc Clifton4-May-05 14:52 
GeneralRe: Help with class hierarchy Pin
Claudio Grazioli4-May-05 21:39
Claudio Grazioli4-May-05 21:39 
GeneralRe: Help with class hierarchy Pin
ICustomTypeDescriptor4-May-05 22:39
ICustomTypeDescriptor4-May-05 22:39 
GeneralStop Word Application programmatically Pin
rikpak4-May-05 12:54
rikpak4-May-05 12:54 
GeneralRe: Stop Word Application programmatically Pin
Fernando Soto4-May-05 14:51
Fernando Soto4-May-05 14:51 
Generaldropdown controls Pin
leesamanth4-May-05 11:26
leesamanth4-May-05 11:26 
GeneralRe: dropdown controls Pin
MoustafaS4-May-05 13:01
MoustafaS4-May-05 13:01 
GeneralRe: dropdown controls Pin
leesamanth4-May-05 19:26
leesamanth4-May-05 19:26 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.