Click here to Skip to main content
15,885,985 members
Home / Discussions / C#
   

C#

 
GeneralRe: Socket question... [C# but not only] Pin
Daniele Mancini28-Jan-05 1:08
Daniele Mancini28-Jan-05 1:08 
GeneralRe: Socket question... [C# but not only] Pin
jzb27-Jan-05 23:55
jzb27-Jan-05 23:55 
GeneralRe: Socket question... [C# but not only] Pin
Daniele Mancini28-Jan-05 1:16
Daniele Mancini28-Jan-05 1:16 
GeneralRe: Socket question... [C# but not only] Pin
Member 132576628-Jan-05 16:45
Member 132576628-Jan-05 16:45 
GeneralHELP pls!!!! Pin
Gregg Holter27-Jan-05 15:31
Gregg Holter27-Jan-05 15:31 
GeneralRe: HELP pls!!!! Pin
Yulianto.27-Jan-05 16:08
Yulianto.27-Jan-05 16:08 
GeneralRe: HELP pls!!!! Pin
Robert Rohde27-Jan-05 20:12
Robert Rohde27-Jan-05 20:12 
GeneralRe: HELP pls!!!! Pin
Daniele Mancini28-Jan-05 1:27
Daniele Mancini28-Jan-05 1:27 
Maybe use an ArrayList (from namespace System.Collections) intead of strings...

using System.Collections

Class1
{
private ArrayList _name=new ArrayList();

public Class1(){}

public string Name
{
get { return _name; }
set { _name=value; }
}
}

in this way this code
Class1 myClass=new Class1();
Console.WriteLine(myClass.Name[0].ToString());
will write on screen the first object stored converted to string... In this way you can store different types of data (or objects), since ArrayList class is supposed to store "object" objects :P
Obviusly you need to know what kind of data you are going to retrieve from the ArrayList... ^^
GeneralRe: HELP pls!!!! Pin
Gregg Holter28-Jan-05 16:50
Gregg Holter28-Jan-05 16:50 
GeneralRe: HELP pls!!!! Pin
S. Senthil Kumar28-Jan-05 8:14
S. Senthil Kumar28-Jan-05 8:14 
GeneralRe: HELP pls!!!! Pin
Gregg Holter28-Jan-05 16:51
Gregg Holter28-Jan-05 16:51 
GeneralTreeview Pin
StephenMcAllister27-Jan-05 14:57
StephenMcAllister27-Jan-05 14:57 
GeneralRe: Treeview Pin
Robert Rohde27-Jan-05 20:14
Robert Rohde27-Jan-05 20:14 
GeneralValue of Custom Attribute on Enum Pin
Paul Watson27-Jan-05 14:08
sitebuilderPaul Watson27-Jan-05 14:08 
GeneralRe: Value of Custom Attribute on Enum Pin
leppie27-Jan-05 20:08
leppie27-Jan-05 20:08 
GeneralCrystal Report Deployment Problem.. Pin
Shady Aly27-Jan-05 13:05
Shady Aly27-Jan-05 13:05 
GeneralRe: Crystal Report Deployment Problem.. Pin
DougW4830-Jan-05 16:59
DougW4830-Jan-05 16:59 
GeneralCompile Problems Pin
thepersonof27-Jan-05 10:57
thepersonof27-Jan-05 10:57 
GeneralRe: Compile Problems Pin
thepersonof28-Jan-05 9:01
thepersonof28-Jan-05 9:01 
GeneralKilling applications Pin
Esmo200027-Jan-05 9:55
Esmo200027-Jan-05 9:55 
GeneralRe: Killing applications Pin
Dave Kreskowiak27-Jan-05 10:48
mveDave Kreskowiak27-Jan-05 10:48 
GeneralRe: Killing applications Pin
Dennis C. Dietrich27-Jan-05 11:09
Dennis C. Dietrich27-Jan-05 11:09 
GeneralRe: Killing applications Pin
Dave Kreskowiak28-Jan-05 1:17
mveDave Kreskowiak28-Jan-05 1:17 
GeneralRe: Killing applications Pin
Dennis C. Dietrich28-Jan-05 11:59
Dennis C. Dietrich28-Jan-05 11:59 
Generaldata grid Pin
webhay27-Jan-05 9:03
webhay27-Jan-05 9:03 

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.