R
rkbnair
How can I define type variant in c#?
Peter Bromberg said:The .NET Framework does not have a "variant" type. If you start typing the
method signature of a referenced third-party library in the Visual Studio
IDE, Visual Studio Intellisense will show you the return type of the method.
Failing that, you can do this:
Object abcd=MyThirdPartyLib.MyThirdPartyLibFunction();
type t = typeof(abcd);
-- Peter
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
MetaFinder: http://www.blogmetafinder.com