what r the properties should be given to set method?
Answers were Sorted based on User's Feedback
Answer / venkatesh
Class Class1
' Define a local variable to store the property value.
Ans: Only One Property.
example:
Private PropertyValue As String
' Define the property.
Public Property Prop1() As String
Get
' The Get property procedure is called when the
' value
' of a property is retrieved.
Return PropertyValue
End Get
Set(ByVal Value As String)
' The Set property procedure is called when the
' value
' of a property is modified.
' The value to be assigned is passed in the
' argument to Set.
PropertyValue = Value
End Set
End Property
End Class
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / santosh prasad
The procedures that are described in the get method and
that methods are given in the set method.
| Is This Answer Correct ? | 1 Yes | 0 No |
Advantage of vb.net over vb ?
What do you mean by Redim in VB.NET?
Explain how to send xml file on server using http protocol?
What is the advantages of VB.NET?
what is diffrence constructor and destructor in vb
How to connect a service based database to vb.net forms? Do we have to create any specific database?
How many languages are supported by .net?
Explain some of the exclusive features which are present in vb?
what is intermediate language?
Explain the difference between an xml "fragment" and an xml "document."
What is global assembly cache (gac)?
write a VB.net program to swap two numbers
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)