Hi
I want to store array object in hash table and then create application variables based on values in the array. Iam uanble to store array object in hash table.
My code is
Manager.Add("AUserManager",AUserManager);
IDictionaryEnumerator myHashEnumerator = Manager.GetEnumerator();
while ( myHashEnumerator.MoveNext() )
{
for ( int j=0; j<=myHashEnumerator.Value.ToString().Length-1; j++ )
{
Application.Add(myHashEnumerator.Key.ToString()+"[" + j + "]",myHashEnumerator.Value+"["+ j +"]"
;
}
}
when i retreive this application variable iam getting it as System.String[][1].
So the array is passed as string object. Any ideas?
Badrinath Chebbi
I want to store array object in hash table and then create application variables based on values in the array. Iam uanble to store array object in hash table.
My code is
Manager.Add("AUserManager",AUserManager);
IDictionaryEnumerator myHashEnumerator = Manager.GetEnumerator();
while ( myHashEnumerator.MoveNext() )
{
for ( int j=0; j<=myHashEnumerator.Value.ToString().Length-1; j++ )
{
Application.Add(myHashEnumerator.Key.ToString()+"[" + j + "]",myHashEnumerator.Value+"["+ j +"]"
}
}
when i retreive this application variable iam getting it as System.String[][1].
So the array is passed as string object. Any ideas?
Badrinath Chebbi