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...

How is a property designated as read-only?

Answer Posted / deep

In VB.NET:
Private mPropertyName as DataType
Public ReadOnly Property PropertyName() As DataType
Get Return mPropertyName
End Get
End Property
In C#
Private DataType mPropertyName;
public returntype PropertyName
{
get{
//property implementation goes here
return mPropertyName;
}
// Do not write the set implementation
}

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Do you know what is linq?

1018


Can any object be stored in a viewstate in .net?

1027


What is the difference between .net 2000 and .net 2005(features)? Which one is better?

917


How many namespaces are in .net version 1.1?

1083


Can I write il programs directly?

1016


What is the difference between boxing and unboxing?

909


What is strong-typing versus weak-typing? Which is preferred?

1000


What is meant by globalization and localization?

987


Explain how to load the contents of an xml file into an xmldocument object?

929


Explain what is the difference between constants and read-only variables?

891


How to implement datagrid in.net? How would you make a combo-box appear in one column of a datagrid? What are the ways to show data grid inside a data grid for a master details type of tables? If we write any code for datagrid methods. What is the access specifier used for that methods in the code behind file and why?

1028


Describe the difference between inline and code behind which is best in a loosely coupled solution?

2742


What are Attributes in .NET?

1022


Explain webfarm vs webgardens in .net?

1029


What are .net functions?

909