How do I overload the square-bracket operator in C#? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T18:44:40Z http://stackoverflow.com/feeds/question/287928 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/287928/how-do-i-overload-the-square-bracket-operator-in-c 8 How do I overload the square-bracket operator in C#? Coderer 2008-11-13T19:20:22Z 2008-11-21T20:36:57Z <p>DataGridView, for example, lets you do this:</p> <pre><code>DataGridView dgv = ...; DataGridViewCell cell = dgv[1,5]; </code></pre> <p>but for the life of me I can't find the documentation on the index/square-bracket operator. What do they call it? Where is it implemented? Can it throw? How can I do the same thing in my own classes?</p> <p>ETA: Thanks for all the quick answers. Briefly: the relevant documentation is under the "Item" property; the way to overload is by declaring a property like <code>public object this[int x, int y]{ get{...}; set{...} }</code>; the indexer for DataGridView does not throw, at least according to the documentation. It doesn't mention what happens if you supply invalid coordinates.</p> <p>ETA Again: OK, even though the documentation makes no mention of it (naughty Microsoft!), it turns out that the indexer for DataGridView will in fact throw an ArgumentOutOfRangeException if you supply it with invalid coordinates. Fair warning.</p> http://stackoverflow.com/questions/287928/how-do-i-overload-the-square-bracket-operator-in-c/287938#287938 0 Answer by Daok for How do I overload the square-bracket operator in C#? Daok 2008-11-13T19:23:43Z 2008-11-13T19:29:42Z <pre><code>Operators Overloadability +, -, *, /, %, &amp;, |, &lt;&lt;, &gt;&gt; All C# binary operators can be overloaded. +, -, !, ~, ++, --, true, false All C# unary operators can be overloaded. ==, !=, &lt;, &gt;, &lt;= , &gt;= All relational operators can be overloaded, but only as pairs. &amp;&amp;, || They can't be overloaded () (Conversion operator) They can't be overloaded +=, -=, *=, /=, %= These compound assignment operators can be overloaded. But in C#, these operators are automatically overloaded when the respective binary operator is overloaded. =, . , ?:, -&gt;, new, is, as, sizeof These operators can't be overloaded [ ] Can be overloaded but not always! </code></pre> <p><a href="http://www.csharphelp.com/archives/archive135.html" rel="nofollow">Source of the information</a></p> <p>For bracket:</p> <pre><code>public Object this[int index] { } </code></pre> <h2>BUT</h2> <p>The array indexing operator <strong>cannot be overloaded</strong>; however, types can define indexers, properties that take one or more parameters. Indexer parameters are enclosed in square brackets, just like array indices, but indexer parameters can be declared to be of any type (unlike array indices, which must be integral).</p> <p>From <a href="http://msdn.microsoft.com/en-us/library/a3hd7ste(VS.71).aspx" rel="nofollow">MSDN</a></p> http://stackoverflow.com/questions/287928/how-do-i-overload-the-square-bracket-operator-in-c/287945#287945 9 Answer by Jason Miesionczek for How do I overload the square-bracket operator in C#? Jason Miesionczek 2008-11-13T19:25:08Z 2008-11-13T19:25:08Z <pre><code>public class CustomCollection : List&lt;Object&gt; { public Object this[int index] { // ... } } </code></pre> http://stackoverflow.com/questions/287928/how-do-i-overload-the-square-bracket-operator-in-c/287946#287946 17 Answer by Ruben for How do I overload the square-bracket operator in C#? Ruben 2008-11-13T19:25:19Z 2008-11-13T19:25:19Z <p>Hi, you can find how to do it <a href="http://msdn.microsoft.com/en-us/library/6x16t2tx.aspx" rel="nofollow">here</a>. In short it is:</p> <pre><code>public object this[int i] { get {return InnerList[i];} set {InnerList[i] = value;} } </code></pre> http://stackoverflow.com/questions/287928/how-do-i-overload-the-square-bracket-operator-in-c/287948#287948 3 Answer by Ricardo Villamil for How do I overload the square-bracket operator in C#? Ricardo Villamil 2008-11-13T19:26:09Z 2008-11-13T19:26:09Z <p>That would be the item property: <a href="http://msdn.microsoft.com/en-us/library/0ebtbkkc.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/0ebtbkkc.aspx</a></p> <p>Maybe something like this would work:</p> <pre><code>public T Item[int index, int y] { //Then do whatever you need to return/set here. get; set; } </code></pre> http://stackoverflow.com/questions/287928/how-do-i-overload-the-square-bracket-operator-in-c/287952#287952 1 Answer by Rob Prouse for How do I overload the square-bracket operator in C#? Rob Prouse 2008-11-13T19:27:48Z 2008-11-13T19:27:48Z <p>Here is an example returning a value from an internal List object. Should give you the idea.</p> <pre><code> public object this[int index] { get { return ( List[index] ); } set { List[index] = value; } } </code></pre> http://stackoverflow.com/questions/287928/how-do-i-overload-the-square-bracket-operator-in-c/287959#287959 1 Answer by Charles Bretana for How do I overload the square-bracket operator in C#? Charles Bretana 2008-11-13T19:29:14Z 2008-11-13T21:45:37Z <p>If you mean the array indexer,, You overload that just by writing an indexer property.. And you can overload, (write as many as you want) indexer properties as long as each one has a different parameter signature</p> <pre><code>public class EmpployeeCollection: List&lt;Employee&gt; { public Employee this[int employeeId] { get { foreach(Employee emp in this) if (emp.EmployeeId == employeeId) return emp; return null; } } public Employee this[string employeeName] { get { foreach(Employee emp in this) if (emp.name == employeeName) return emp; return null; } } } </code></pre> http://stackoverflow.com/questions/287928/how-do-i-overload-the-square-bracket-operator-in-c/310114#310114 0 Answer by superjordo for How do I overload the square-bracket operator in C#? superjordo 2008-11-21T20:36:57Z 2008-11-21T20:36:57Z <p>For CLI C++ (compiled with /clr) see <a href="http://msdn.microsoft.com/en-us/library/ms235303.aspx" rel="nofollow">this MSDN link</a>.</p> <p>In short, a property can be given the name "default":</p> <pre><code>ref class Class { public: property System::String^ default[int i] { System::String^ get(int i) { return "hello world"; } } }; </code></pre>