Answer Posted / nazrul
There three type of properties.
1)Readonly properties(Only get)
2)WriteOnly Properties(Only set).
3)Read and Write(set + get)
| Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
What is data dictionary in c#?
What is the difference between writeline and write in c#?
How to find out that the code is written as managed or un-managed code?
If you define a user defined data type by using the struct keyword, is it a value type or reference type?
Can abstract class instantiated c#?
In a C# class we have a SortedList member m_addinProjects
we want to provide an iterator to allow the consumer of
this class access to the items in the collection. Please
provide an iterator method for the AnalyzeAddinsDLL class
below and an example of how it would be used.
namespace AnalyzeAddinsDLL
{
public class AllAddInProjects
{
private SortedList
How to implement delegates in c#.net
What is an xsd file?
What are "class access modifiers" in C#?
What is the difference between int.parse and int.tryparse methods?
Which debugging tools you can use in the .NET ssSDK?
How do I do implement a trace and assert?
Which is more efficient for loop or while loop?
What are the return types in c#?
What is tryparse c#?