C# Programming - Properties - Discussion
Discussion Forum : Properties - General Questions (Q.No. 9)
9.
If a Student class has an indexed property which is used to store or retrieve values to/from an array of 5 integers, then which of the following are the correct ways to use this indexed property?
Student[3] = 34;
Student s = new Student(); s[3] = 34;
Student s = new Student(); Console.WriteLine(s[3]);
Console.WriteLine(Student[3]);
Student.this s = new Student.this(); s[3] = 34;
Discussion:
Be the first person to comment on this question !
Post your comments here:
Quick links
Quantitative Aptitude
Verbal (English)
Reasoning
Programming
Interview
Placement Papers