As far as I know, any time we store a value in application or session state,
it is stored as a humble 'object' type rather than it's "real" type.
For example, if we want to store an integer value in Application state:
Application["MyInt"] = 93;
Then to retrieve that value, we would use something like this:
Convert.ToInt32(Application["MyInt"]);
My question:
Is there any way we can retrieve the value of "MyInt" as an integer -
without having to convert it first from 'object'?
I'm aware of extension methods - but what about "extension properties"? Or
am I missing something that should be obvious?
Thanks.
For example (I use VB)
Private Shared _MyInt As String = "MyInt"
Shared Property MyInt() As Integer
Get
Return Current.Session(_MyInt)
End Get
Set(ByVal value As Integer)
Current.Session(_MyInt) = value
End Set
End Property
Hope this helps
Matt
"Cramer" <A...@B.com> wrote in message
news:eTcrbEVq...@TK2MSFTNGP05.phx.gbl...
You do not need to convert it.
A cast should be fine.
int ival = (int)Application["MyInt"];
If you want type safeness, then I would recommend storing a
single object with multiple properties in Application.
Arne