|
-
Nov 16th, 2002, 08:49 PM
#1
Thread Starter
Frenzied Member
What is the technical and practical difference bettween these two:
I guess the first one is not professional, but I want to know the exact technical and practical difference between these two class definisions:
First:
Public Class myClass
Public Shared myString as String
End Class
Second:
Public Class myClass
Private Shared c_myString
Public Shared Property myString() As String
Get
Return c_myString
End Get
Set(ByVal Value As String)
c_myString = Value
End Set
End Property
End Class
Thanx
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|