VB.NET 1.1 Tutorial - The Me Keyword


The Me keyword refers to the current instance of the class.

Me.Text = ""

In this example from the HelloLabel application, Me is used to refer to the HelloLabel class, which is derived from Form.


References

For more information on the Me keyword, visit MSDN at microsoft here.

What Next?

Return to the Tutorial Contents.