J
Jayaram Vytla
I have a requirement to handle different data types in the value
variable. I don't want to use 'object' and type casting each time.
What is the best way to do this?
-----------------------------------------
My hashtable contains
-> Key
-> Pointclass
-----------------------------------
class Pointclass
{
string pointname;
pointvalue;
DataType pointvalueDataType;
DateTime pointtimestamp;
}
-------------------------------------
My pointvalue will be string or int or float or double or long or any
DataType
Thanks in advance.
Jayaram
variable. I don't want to use 'object' and type casting each time.
What is the best way to do this?
-----------------------------------------
My hashtable contains
-> Key
-> Pointclass
-----------------------------------
class Pointclass
{
string pointname;
pointvalue;
DataType pointvalueDataType;
DateTime pointtimestamp;
}
-------------------------------------
My pointvalue will be string or int or float or double or long or any
DataType
Thanks in advance.
Jayaram