Hi,
In VB.NET there is a keyword called "My" which has a lot of properties collected at it.
Is there any equivalent to this "My" in C#
Thank you.
Hi,
In VB.NET there is a keyword called "My" which has a lot of properties collected at it.
Is there any equivalent to this "My" in C#
Thank you.
What is VB.NET "My" equivalent in C#?
adityap
Erik11
No, there is no equivalent in C#, but if you really want to use VB's "My", this page shows how to do it:
http://msdn2.microsoft.com/en-us/library/ms173136.aspx
Michael Blome
Visual C# Documentation Team
jockofett
nope. VB.NET My was implemented in .NET 2.0 (and higher perhaps) which has the common functionality in there, to save users time. It's a VB.NET specific feature
Nick K.
Microsoft.VisualBasic.Devices.
ComputerYou will not have a My namespace, AFAIK you have to browse the namespace directly.
--
SvenC
thedazman
Hi all,
In VB.NET there is a keyword called "My" which has a lot of properties collected at it.
Is there any equivalent to this "My" in C#
Thank you.