Click here to Skip to main content
16,004,854 members
Home / Discussions / C#
   

C#

 
GeneralRe: problem with <iframe> tag. Pin
hdv21216-Jan-07 9:02
hdv21216-Jan-07 9:02 
GeneralRe: problem with <iframe> tag. Pin
ednrgc16-Jan-07 9:04
ednrgc16-Jan-07 9:04 
QuestionDropDownList Problem Pin
fahiemulleh16-Jan-07 7:01
fahiemulleh16-Jan-07 7:01 
AnswerRe: DropDownList Problem Pin
Darren D16-Jan-07 8:23
Darren D16-Jan-07 8:23 
AnswerRe: DropDownList Problem Pin
Christian Graus16-Jan-07 8:24
protectorChristian Graus16-Jan-07 8:24 
QuestionUnkown array length of arrays; How? Pin
T.Willey16-Jan-07 6:40
T.Willey16-Jan-07 6:40 
AnswerRe: Unkown array length of arrays; How? Pin
T.Willey16-Jan-07 7:04
T.Willey16-Jan-07 7:04 
AnswerRe: Unkown array length of arrays; How? Pin
Aaron VanWieren16-Jan-07 7:13
Aaron VanWieren16-Jan-07 7:13 
Not quite sure what you are trying but here goes the basics....

Single Array
str[] strArry = new string[3]; //Number of items

Double Array
str[,] strArry=new string[4,3]; //4 Rows 3 Columns

Not too sure about anything past this, but it would be an additional ','.

The problem you are having is the 3 in the brackets.

The trick here is that an array size has to be declared when initialized, as it cannot be set dynamically, so that is where you are going to have your largest problem.

Hope this helps to get you going in the right direction.
GeneralRe: Unkown array length of arrays; How? Pin
T.Willey16-Jan-07 7:27
T.Willey16-Jan-07 7:27 
GeneralRe: Unkown array length of arrays; How? Pin
Aaron VanWieren16-Jan-07 7:53
Aaron VanWieren16-Jan-07 7:53 
GeneralRe: Unkown array length of arrays; How? Pin
T.Willey16-Jan-07 8:12
T.Willey16-Jan-07 8:12 
AnswerRe: Unkown array length of arrays; How? Pin
Stefan Troschuetz16-Jan-07 7:45
Stefan Troschuetz16-Jan-07 7:45 
GeneralRe: Unkown array length of arrays; How? Pin
T.Willey16-Jan-07 8:14
T.Willey16-Jan-07 8:14 
GeneralRe: Unkown array length of arrays; How? Pin
Stefan Troschuetz16-Jan-07 8:32
Stefan Troschuetz16-Jan-07 8:32 
GeneralRe: Unkown array length of arrays; How? Pin
T.Willey16-Jan-07 8:57
T.Willey16-Jan-07 8:57 
GeneralRe: Unkown array length of arrays; How? Pin
Stefan Troschuetz16-Jan-07 9:14
Stefan Troschuetz16-Jan-07 9:14 
AnswerRe: Unkown array length of arrays; How? Pin
T.Willey16-Jan-07 9:43
T.Willey16-Jan-07 9:43 
QuestionC# and Outlook 2003 Pin
Askalo16-Jan-07 6:10
Askalo16-Jan-07 6:10 
AnswerRe: C# and Outlook 2003 Pin
Christian Graus16-Jan-07 8:23
protectorChristian Graus16-Jan-07 8:23 
QuestionRe: C# and Outlook 2003 Pin
Askalo16-Jan-07 13:03
Askalo16-Jan-07 13:03 
AnswerRe: C# and Outlook 2003 Pin
Phillip M. Hoff16-Jan-07 17:32
Phillip M. Hoff16-Jan-07 17:32 
QuestionDllMain in C# Pin
wout de zeeuw16-Jan-07 5:33
wout de zeeuw16-Jan-07 5:33 
AnswerRe: DllMain in C# Pin
Dave Kreskowiak16-Jan-07 5:49
mveDave Kreskowiak16-Jan-07 5:49 
GeneralRe: DllMain in C# Pin
wout de zeeuw16-Jan-07 5:57
wout de zeeuw16-Jan-07 5:57 
GeneralRe: DllMain in C# Pin
Ed.Poore16-Jan-07 7:15
Ed.Poore16-Jan-07 7:15 

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.