Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


what r the properties should be given to set method?

Answers were Sorted based on User's Feedback



what r the properties should be given to set method?..

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

what r the properties should be given to set method?..

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

Post New Answer

More VB.NET Interview Questions

Where would you use Abstract class and Interface?

4 Answers  


Explain managed code?

0 Answers  


How do you call a stored procedure in Visual Basic?

0 Answers   CGI,


What is the importance of a Button control?

0 Answers  


What is visual basic.net culture?

0 Answers  


Which dll is used for microsoft .net run time?

0 Answers  


What are the difference between structure and class?

0 Answers  


Explain about visual basic.net?

0 Answers  


Explain about the ruby interface generator?

0 Answers  


What is the difference between compiler and interpreter?

0 Answers  


Explain private assembly?

0 Answers  


How many languages are supported by .net?

0 Answers  


Categories