Hi all,

I whonder how can I manage an object subtype.

Explain: take a (pseudocode) sub like the following

void DoSomething(object o)
{
switch (o.type)
{
case string
...
case int32
....
}
}

How can I translate in working c#?

Thanx!