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?

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is break mode? What are the options to step through code?

1118


Explain the difference between int and int32?

989


Explain about the ruby interface generator?

1019


What are the advantages of an assembly?

1123


Name a feature which is common to all .net languages?

1058


What is public assembly?

1027


Explain and brief about rapid application development tool?

1061


Explain about branching logic control in vb.net?

996


Explain the components of common language runtime.

1208


What is the use of errorprovider control?

1039


What is the significance of delegates. Where should they be used? What are the situations where we require them?

1019


Explain managed code?

984


Name the two main parts of .net?

990


What do you mean by deserialization?

1018


Can you please explain the difference between int and int32?

1147