Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Session array variable
Name: Galaxey Date: April 9, 2009 at 10:00:57 Pacific OS: Windows XP Subcategory: General
Comment:
How to access and assign value to a seesion arraylist variable using ASP.NET and C# ?
Summary: I would like to know how to declare variables for arrays when the size of the array is not known, thus it is event- controlled (ex. sentinel vaue of 0) . For example: int array1[4] declares a one dim...
Summary: I think you may have misdefined your problem. You have 10 sessions each with 20 spaces. A participant has to register for 3 sessions. The maximum number of partipants is 66. Participant array n by 3 I...
Summary: Hi, it's interesting problem actually. I started to declare the array using this: int i, j, k, x=5, y=5, z=5; int ***array = (int ***)new int[x,y,z]; but whenever I try to access is using "array" vari...