Click here to Skip to main content
15,889,909 members
Home / Discussions / C#
   

C#

 
GeneralRe: Microsoft Web Browser control Pin
Meysam Mahfouzi16-Jul-03 19:54
Meysam Mahfouzi16-Jul-03 19:54 
GeneralDetecting CD Drive and Name Pin
Meysam Mahfouzi16-Jul-03 6:08
Meysam Mahfouzi16-Jul-03 6:08 
GeneralRe: Detecting CD Drive and Name Pin
Mazdak16-Jul-03 10:21
Mazdak16-Jul-03 10:21 
GeneralSingle.Parse(string) problem... Pin
Luc Bergeron16-Jul-03 5:32
Luc Bergeron16-Jul-03 5:32 
GeneralRe: Single.Parse(string) problem... Pin
Luc Bergeron16-Jul-03 5:54
Luc Bergeron16-Jul-03 5:54 
QuestionC# library for file system info? Pin
KingTermite16-Jul-03 5:24
KingTermite16-Jul-03 5:24 
GeneralDynamic Array Pin
Hoang Dung16-Jul-03 4:46
Hoang Dung16-Jul-03 4:46 
GeneralRe: Dynamic Array Pin
Frank Olorin Rizzi16-Jul-03 4:54
Frank Olorin Rizzi16-Jul-03 4:54 
Dung,
what do you mean by "length of array unfixed" ?

If you mean that you will not know the length until run-time, consider the following snipplet:
int x = 3;
char[] myArray = new char[x];

This compiles, and thus, even if x was determine by picking user input (or cfg file, or what have you),
you should be able to use it.

If, on the other hand, you need an array whose size will change in time (i.e. starts
with 10 elements in it, but later on you need to add 5 more, and then shrink it to 5, etc etc) then arrays are not
the correct data structure for you. Arrays have "fixed size" (they do not grow in time), but
if you look at the classes in System.Collections you should find something for you.
I often use the Hashtable class (but it's often an overkill!).

HTH,
Frank
GeneralRe: Dynamic Array Pin
Meysam Mahfouzi16-Jul-03 6:26
Meysam Mahfouzi16-Jul-03 6:26 
GeneralThanks Pin
Hoang Dung17-Jul-03 7:22
Hoang Dung17-Jul-03 7:22 
Generalexamples UI datagrid/collection Pin
haezeban16-Jul-03 4:15
haezeban16-Jul-03 4:15 
GeneralCopy, Paste and Find Pin
totig16-Jul-03 3:00
totig16-Jul-03 3:00 
GeneralWhat's the question Pin
ResCode15-Jul-03 16:26
ResCode15-Jul-03 16:26 
GeneralRe: What's the question Pin
ResCode16-Jul-03 18:18
ResCode16-Jul-03 18:18 
Generalmisterbear Pin
misterbear15-Jul-03 13:07
misterbear15-Jul-03 13:07 
GeneralRe: misterbear Pin
J. Dunlap15-Jul-03 13:57
J. Dunlap15-Jul-03 13:57 
GeneralC# CDO email Encoding HELP please Pin
Member 7681715-Jul-03 12:36
Member 7681715-Jul-03 12:36 
GeneralRe: C# CDO email Encoding HELP please Pin
Radoslav Bielik15-Jul-03 13:19
Radoslav Bielik15-Jul-03 13:19 
GeneralRe: C# CDO email Encoding HELP please Pin
Member 7681715-Jul-03 13:24
Member 7681715-Jul-03 13:24 
GeneralRe: C# CDO email Encoding HELP please Pin
Radoslav Bielik16-Jul-03 11:33
Radoslav Bielik16-Jul-03 11:33 
QuestionHow to execute an application from C# Pin
Darryl Borden15-Jul-03 10:23
Darryl Borden15-Jul-03 10:23 
AnswerRe: How to execute an application from C# Pin
David Stone15-Jul-03 10:41
sitebuilderDavid Stone15-Jul-03 10:41 
GeneralRe: How to execute an application from C# Pin
Stephane Rodriguez.16-Jul-03 2:20
Stephane Rodriguez.16-Jul-03 2:20 
GeneralRe: How to execute an application from C# Pin
David Stone16-Jul-03 7:08
sitebuilderDavid Stone16-Jul-03 7:08 
GeneralRe: How to execute an application from C# Pin
Stephane Rodriguez.16-Jul-03 8:04
Stephane Rodriguez.16-Jul-03 8:04 

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.