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 is an indexed property?



What is an indexed property? ..

Answer / anil sharma

you include the index parameter in the Property statement.
In this example, the test_number parameter is the index for
the Scores property.


Public Class Student
' The private array of scores.
Private m_Scores(9) As Integer

' The indexed Score property procedures.
Public Property Score(ByVal test_number As Integer) As _
Integer
Get
Return m_Scores(test_number)
End Get
Set(ByVal Value As Integer)
m_Scores(test_number) = Value
End Set
End Property
End Class

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More VB.NET Interview Questions

What is the difference between a "jagged array" and multidimensional array" ?can anyone show me it practically ?

0 Answers  


What is the main purpose of garbage collector?

0 Answers  


What are the differences between vb.net and c#, related to oops concepts

0 Answers  


Difference between a sub and a function?

2 Answers  


Explain cls?

0 Answers  


What are all the parts of .net framework?

0 Answers  


What is visual basic.net culture?

0 Answers  


Which is the base class for all the classes in .net framework?

0 Answers  


Can you please explain the difference between namespace and assembly?

0 Answers  


How can we store decimal data in .net?

0 Answers  


What is the feature anonymous type?

0 Answers  


What are the difference between structure and class?

0 Answers  


Categories