Courses
Tutorials
Interview Prep
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
Similar Topics
Web Technologies
32.1K+ articles
DSA
20.4K+ articles
Python
19.6K+ articles
Experiences
15.8K+ articles
Interview Experiences
14.5K+ articles
School Learning
11.1K+ articles
JavaScript
9.9K+ articles
Difference Between
3.1K+ articles
C#
2.0K+ articles
CSharp-OOP
38+ articles
CSharp-Indexers & Properties
6 posts
Recent Articles
Popular Articles
C# - Indexers Using String as an Index
Last Updated: 15 July 2025
Prerequisite: Properties in C#Indexers allow instances of a class or struct to be indexed just like arrays. By using indexers class will behave like a virtual array. The i...
read more
C#
CSharp-Indexers & Properties
Difference Between Properties and Indexers in C#
Last Updated: 15 July 2025
Properties in C# are named members that use access modifiers to set and retrieve values of fields declared in a secured manner. Properties are used for abstracting and enc...
read more
Difference Between
C#
CSharp-Indexers & Properties
C# Restrictions on Properties
Last Updated: 11 July 2025
Properties in C# are special class members that provide a flexible mechanism to read, write, or compute the value of a private field. They act as methods called accessors ...
read more
C#
Picked
CSharp-OOP
CSharp-Indexers & Properties
C# - Overloading of Indexers
Last Updated: 11 July 2025
In C#, Indexer allows an instance of a class or struct to be indexed as an array. When an indexer is defined for a class, then that class will behave like a virtual array....
read more
Technical Scripter
C#
Picked
Technical Scripter 2018
CSharp-Indexers & Properties
C# Multidimensional Indexers
Last Updated: 11 July 2025
In C#, indexers are special members that allow objects to be indexed similarly to arrays. Multi-dimensional indexers in C# are the same as multidimensional arrays. We can ...
read more
C#
CSharp-Indexers & Properties
Properties in C#
Last Updated: 23 April 2026
A property in C# is a member of a class that provides a flexible way to read, write or compute the value of a private field. It acts like a combination of a variable and a...
read more
C#
CSharp-OOP
CSharp-Indexers & Properties