Doug: this isn't true. There is no need to instantiate a class every time you need some functionality. It all depends on your class design. .NET (and other programming languages) come with something called static (or Shared) members. These members operate on the
class, rather than on
an instance of that class. E.g.:
Code:
C#
public static class Helpers
{
public static string SayHello()
{
return "Hello World";
}
}
VB.NET
Public Class Helpers
Public Shared Function SayHello() As String
Return "Hello World"
End Function
End Class
With this class, you can use the SayHello method like this:
Code:
Label1.Text = Helpers.SayHello();
You'll find that you can't call instance members on the class, but only on an instance of that class. The reverse is true for static members: you can only call them on the class, but not on an instance of that class.
Static / shared methods are ideal for helper functions that don't require an instance.
myousman: The
Public access modifier is to determine the visibility of a class or member. E.g. public members / class can be used anywhere. Private classes / members can only be used within the class that defines them. Besides these two, you also may run into Friend and Protected in Visual Basic. Take a look here for some more background:
http://visualbasic.about.com/od/usin...heritancea.htm
http://msdn2.microsoft.com/en-us/library/76453kax.aspx
What you described in your original post is the shared / static functionality.
Hope this helps,
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.
Author of
ASP.NET 2.0 Instant Results and
Beginning Dreamweaver MX / MX 2004
Want to be my colleague? Then check out
this post.