vb6 to vb.net declaration - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T12:07:36Zhttp://stackoverflow.com/feeds/question/70197http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/70197/vb6-to-vb-net-declaration1vb6 to vb.net declarationunknown (yahoo)2008-09-16T07:52:36Z2008-09-17T11:38:26Z
<p>How do I declare "as any" in VB.NET, or what is the equivalent?</p>
http://stackoverflow.com/questions/70197/vb6-to-vb-net-declaration/70208#702080Answer by 1800 INFORMATION for vb6 to vb.net declaration1800 INFORMATION2008-09-16T07:54:31Z2008-09-16T07:54:31Z<p>VB.Net doesn't support the "As Any" keyword. You'll need to explicitly specify the type.</p>
http://stackoverflow.com/questions/70197/vb6-to-vb-net-declaration/70227#702273Answer by Groky for vb6 to vb.net declarationGroky2008-09-16T07:58:35Z2008-09-16T07:58:35Z<p>The closest you can get is:</p>
<p>Dim var as Object</p>
<p>It's not exactly the same as VB6's as Any (which stores values in a Variant) but you can store variables of any type as Object, albeit boxed.</p>
http://stackoverflow.com/questions/70197/vb6-to-vb-net-declaration/70248#702483Answer by Tim Jarvis for vb6 to vb.net declarationTim Jarvis2008-09-16T08:03:33Z2008-09-16T08:03:33Z<p>VB.NET does not support the as any keyword, VB.NET is a strongly typed language, you can however (with .NET 3.5) use implicit typing in VB</p>
<p>Dim fred = "Hello World" will implicitly type fred as a string variable. If you want to simply hold a value that you do not know the type of at design time then you can simply declare your variable as object (the mother of all objects) NOTE, this usually is a red flag for code reviewers, so make sure you have a good reason ready :-)</p>
http://stackoverflow.com/questions/70197/vb6-to-vb-net-declaration/71779#717790Answer by Hugo Riley for vb6 to vb.net declarationHugo Riley2008-09-16T12:40:43Z2008-09-17T05:50:04Z<p>I suppose you have problems with converting WinAPI declarations. Sometimes you can get away if you just declare your variable as string or integer because that is the real type of value returned.</p>
<p>You can also try marshaling:</p>
<pre>
<MarshalAsAttribute(UnmanagedType.AsAny)> ByRef buff As Object
</pre>
http://stackoverflow.com/questions/70197/vb6-to-vb-net-declaration/82230#822300Answer by MarkJ for vb6 to vb.net declarationMarkJ2008-09-17T11:38:26Z2008-09-17T11:38:26Z<p>As Any must be referring to Windows API declarations, as it can't be used in variable declarations. You can use overloading: just repeat the declarations for each different data type you wish to pass. VB.NET picks out the one that matches the argument you pass in your call. </p>
<p>This is better than As Any was in VB6 because the compiler can still do type-checking.</p>