Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Help with generic
Message
From
18/07/2007 05:27:59
 
 
To
17/07/2007 19:09:55
Victor Acosta
Independent Programmer.
San José, Costa Rica
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Environment versions
Environment:
C# 2.0
OS:
Windows Server 2003
Network:
Windows 2003 Server
Database:
MS SQL Server
Miscellaneous
Thread ID:
01241343
Message ID:
01241407
Views:
22
Hi,

>NOW I am in other web form and I NEED to recover the object saved in session like this;
>
>? Mylocalcollection;
>Mylocalcollection = Session[“mycollection”];
>
>?= the type I don’t know.
>
>BUT, I need first to declare the type of Mylocalcollection which is unknown, since I can have several types of object saved into the session (each table of my system represents a type). If I don’t know the type I can not initialize my local object.
>
>How can I solve this situation with generics or whatever.

Maybe something like:
object o = Session[“mycollection”];
// If you need to cast:
string s = o.GetType().ToString();
switch (s)
     {
          case "PossibleTypeA":
               {
                   PossibleTypeA x = (PossibleTypeA)o;
                   break;
               }
          //etc
     }
>Note: This is solved in C# with the type VAR, but for now I am in C# 2
Not so I'm afraid. The type of var has to be resolvable at compile time.
HTH,
Viv
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform