Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

C# equivalent of 'My' Object in VB

Status
Not open for further replies.

b98mr1

Programmer
Feb 23, 2005
20
GB
Does anyone know of a C#.NET equivalent to the "My" object in VB.NET?

I am using Visual Studio 2005 and am having to convert my VB.NET code to C#.NET. I am trying to display the current time on a status bar and the VB code for this used this object.

Surely there is an object in C# that can do this....

Thanks

Ross
 
No...My equivalent in C#.
This article will help you out in such a condition.

Sharing the best from my side...

--Prashant--
 
Use the qualified namespace, Microsoft.VisualBasic.My

Craig
 
Thanks guys. I got it sorted.

I used the namespace Microsoft.VisualBasic.Devices;

Much Appreciated!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top