Logo 
Search:

Asp.net Answers

Ask Question   UnAnswered
Home » Forum » Asp.net       RSS Feeds
  Question Asked By: Caleb Smith   on Nov 21 In Asp.net Category.

  
Question Answered By: Richie Smith   on Nov 21

so... i think that you can use a hash table with your array  in the
value.


protected HashTable MyTable

class(....

this.MyTable = New HashTable(4); // for 4 items in the table

//add the item into your table.


this.MyTable.Add("Sample",MyArray);


//..... and so on...

than you use:

string[] NewArray = (int[])MyTable["Sample"];

hope it helps.

new Hashtable(4);

Share: 

 

This Question has 2 more answer(s). View Complete Question Thread

 
Didn't find what you were looking for? Find more on How do I roll up data as follows... Or get search suggestion and latest updates.


Tagged: