Hi, all
I am working on a Project ,I use JScript.Net to support it's automation
A question I meeted is "How Can I get Type of a Class?"
eg.
when I call follow code:
Activor.GetObject(Type type, string url)
In C#, I can get it use "typeof(TYPE)"
'type' is method argument, How can I get it in JScript.
Gino - 17 Jul 2006 01:55 GMT
There is a TypeOf in jscript that returns one of eight different values as
described in this URL
http://msdn2.microsoft.com/en-us/library/d70y8358.aspx
> Hi, all
>
[quoted text clipped - 9 lines]
> In C#, I can get it use "typeof(TYPE)"
> 'type' is method argument, How can I get it in JScript.