Tagged Questions
The indexer tag has no wiki summary.
10
votes
8answers
1k views
Real world use cases for C# indexers?
I've seen lot of examples for c# Indexers, but in what way will it help me in real life situations.
I know the C# guru wouldn't have added this if it wasn't a serious feature, but i cant think of a ...
10
votes
1answer
2k views
Extension Methods for Indexers, would they be good?
Extension Methods for Indexers, would they be good ?
I was playing around with some code that re-hydrates POCO's.
The code iterates around rows returned from a SqlDataReader and and uses reflection ...
10
votes
5answers
3k views
Static Indexers?
Why are static indexers disallowed in C#? I see no reason why they should not be allowed and furthermore they could be very useful.
For example:
static class ConfigurationManager {
public ...
9
votes
10answers
479 views
C# what is the point or benefit of an indexer?
Doing some code reading and stumbled upon this snippet that I haven't seen before:
public SomeClass {
public someInterface this[String strParameter] {
get {
return ...
9
votes
3answers
10k views
Eclipse has two C/C++ indexers (fast & full): what's the difference?
Eclipse CDT provides two indexers for C/C++ code (Preferences > C/C++ > Indexer). Does anybody know what the exact difference is between these two?
The help file isn't exactly enlightening:
"CDT ...
8
votes
4answers
221 views
How to write a class that (like array) can be indexed with `arr[key]`?
Like we do Session.Add("LoginUserId", 123);
and then we can access Session["LoginUserId"], like an Array, how do we implement it?
7
votes
3answers
1k views
Google Code Search-like source code indexer and visualizer
I'm looking for a way to search through our subversion repository or just packaged source code.
Are there any downloadable servers/tools like Google Code Search to index source code (preferable with ...
6
votes
2answers
244 views
Using Moq to set any by any key and value
At the end of the question:
Using Moq to set indexers in C#, there was an issue that someone highlighted a problem that I am having as well. But they did not find a solution.
Specifically, I'm ...
5
votes
2answers
245 views
Generic Swap difficulty
I'm coming from C++ where it's easy to do something like this:
template<class T>
void Swap(T &a, T &b)
{
T temp = a;
a = b;
b = temp;
}
and then use it to swap values in a ...
5
votes
3answers
490 views
Using Moq to set indexers in C#
I'm having trouble figuring out how to set indexers in C# with Moq. The Moq documentation is weak, and I've done a lot of searching... what I'd like to do is similar in the solution to How to Moq ...
5
votes
3answers
911 views
PropertyChanged for indexer property
I have a class with an indexer property, with a string key:
public class IndexerProvider {
public object this[string key] {
get
{
return ...
}
set
...
4
votes
5answers
83 views
Unusual member override syntax in C#
So, I was told by someone that a good way to resolve ambiguities in class inheritance is to use the following idiom:
class INewList<T> : IList, IList<T>
{
new T IList<T>.this[int ...
4
votes
1answer
297 views
List/Collection of references to Properties
Consider these properties,
double _temperature;
public double Temperature
{
get { return _temperature; }
set { _temperature = value; }
}
...
4
votes
3answers
290 views
Indexer as part of the interface in C#
In C#, what's the syntax for declaring an indexer as part of an interface? Is it still this[ ]? Something feels odd about using the this keyword in an interface.
3
votes
3answers
58 views
Dynamic linq: Is there a way to access object data by index?
I need some in-memory filtering with Dynamic Linq.
My objects have only a indexer:
public object this[int index] { }
The access to my data is like: object[0], object[1],...
So my query is like ...
3
votes
3answers
63 views
Any possibility to declare indexers in C# as an abstract member?
As the title states, I would like to declare an indexer object this[int index] in an abstract class as an abstract member.
Is this possible in any way?
Is possible to declare this in an interface ...
3
votes
3answers
167 views
Overloaded indexer with enum : impossible to use default indexer
Considering the following code :
namespace MyApp
{
using System;
using System.Collections.ObjectModel;
class Program
{
static void Main(string[] args)
{
...
3
votes
2answers
108 views
XML Comments - How do you reference a dictionary indexer properly?
As the name states, I have no idea how to reference a dictionary indexer. Any help here? :)
FYI, I've tried:
<see cref="Item"/>
<see cref="Item(Int32)"/> //Highly doubted this would ...
3
votes
4answers
91 views
C# Indexer properties - Any way to virtualize the get and not the set method?
I have a special type of dictionary. I'm not sure how to do this exactly, but I'm looking to make the get method virtual, but not the set method:
public TValue this[TKey key]
{
get { ...
3
votes
3answers
2k views
Magento Catalog URL rewrites stuck on processing
As the title says my Catalog URL rewrites indexer is stuck on processing.
I've tried everything and I just can't find a solution to this. Does anyone know a solid fix for this?
I've tried truncating ...
3
votes
3answers
393 views
Class with indexer and property named “Item”
Is it possible to create a class in .NET 4 with:
1) An indexer
2) A property named "Item"
?
For example, this C# class will not compile for me:
public class MyClass
{
public object Item { ...
3
votes
4answers
436 views
wpf bind to indexer
<TextBlock Text="{Binding Path=[0]} />
or
<TextBlock Text="{Binding Path=[myKey]} />
works fine. But is there a way to pass a variable as indexer key?
<TextBlock Text="{Binding ...
3
votes
1answer
354 views
Overload indexer to have foreach'able class
I tried to do something like this but this doesn't work:
class Garage
{
private List<Car> cars = new List<Car>();
public Car this[int i]
{
get ...
3
votes
2answers
304 views
Creating a setter method that takes extra arguments in Ruby
I'm trying to write a method that acts as a setter and takes some extra arguments besides the assigned value. Silly example:
class WordGenerator
def []=(letter, position, allowed)
puts ...
3
votes
1answer
2k views
How can you bind an Indexed property to a control in WPF
Given an instance of the class ThisClassShouldBeTheDataContext as the Datacontext for the view
class ThisClassShouldBeTheDataContext
{
public Contacts Contacts {get;set;}
}
class Contacts
{
...
3
votes
7answers
2k views
C# Multiple Indexers
Is it possible to have something like the following:
class C
{
public Foo Foos[int i]
{
...
}
public Bar Bars[int i]
{
...
}
}
If not, then are what are ...
2
votes
3answers
106 views
Can't use string as a hash ref..?
I'm trying to parse an HTML document for a web indexing program. To do this I'm using HTML::TokeParser.
I'm getting an error on the last line of my first if statement:
if ( $token->[1] eq 'a' ) ...
2
votes
1answer
1k views
Android: how to use SectionIndexer
I am trying to find a way to use SectionIndexer, instead of AlphabetIndexer. What I am interested to do is to have elements of a string arrays on the section headers instead of alphabets. I have not ...
2
votes
4answers
206 views
Create Indexer in VB.NET which can be used from C#
Can I create a class in VB.NET which can be used from C# like that:
myObject.Objects[index].Prop = 1234;
Sure I could create a property which returns an array. But the requirement is that the index ...
2
votes
2answers
217 views
How to parse Maven repository indexes generated by Nexus
I have downloaded the indexes generated for Maven Central from http://mirrors.ibiblio.org/pub/mirrors/maven2/dot-index/nexus-maven-repository-index.gz
I would like to list the artifacts information ...
2
votes
1answer
167 views
Implementing Indexer in F#
I am trying to convert this C# code to F#:
double[,] matrix;
public Matrix(int rows, int cols)
{
this.matrix = new double[rows, cols];
}
public double this[int row, int col]
{
...
2
votes
1answer
170 views
powershell and indexer property
If an indexer in C# is expressed as: index[1, 1]. How would you express this with powershell?
To be more specific, I'm trying to use EPPlus with Powershell to generate excel documents. However I'm ...
2
votes
1answer
357 views
WPF Databinding to index property
I have a control bind to an index property of an object which implements INotifyPropertyChanged.
The problem is, I don't know how to notify the property changed signal for that particular index ...
2
votes
4answers
237 views
C# indexer's Documentation
I have looked over the MSDN site and I haven't been able to find C# indexer's documentation of a specific class
For instance, I want to find HttpRequest's public string this[string key] documentation
...
2
votes
2answers
683 views
How to use indexers with Extension Methods having out parameter and function calls
Is it possible to use indexers with extension methods.
eg. Consider it as an example only.
public static object SelectedValue(this DataGridView dgv, string ColumnName)
{
...
2
votes
2answers
102 views
using indexer to retrieve Linq to SQL object from datastore
class UserDatastore : IUserDatastore
{
...
public IUser this[Guid userId]
{
get
{
User user = (from u in _dataContext.Users
where ...
2
votes
1answer
288 views
Lucene: Wildcards are missing from index
i am building a search index that contains special names - containing ! and ? and & and + and ... I have to tread the following searches different:
me & you
me + you
But whatever i do (did ...
2
votes
3answers
242 views
What is the relationship between indexers and properties in C#?
Is an indexer an extended version of a property?.
2
votes
7answers
2k views
C#: public method{get{} set{}} question
I'm not entirely sure if I have all the terminology correct so forgive me if I'm wrong. I was wondering if it would be possible to send an argument(s) to the method. Take the following for example.
...
1
vote
2answers
40 views
Should indexers always refer to a discrete sequence?
Should indexers always refer to a discrete sequence?
I am tempted to think no, but I would like to ask what others think.
The question started after a 'shortcut' was made on a polynomial class.
...
1
vote
0answers
102 views
Indexer does not find printf/exit/fprintf (Eclipse + QT + MinGW integration regarding stuff in stdio.h / stdlib.h / etc.)
I have a QT Project and Eclipse startet with the QT Eclipse integration program. I am using the newest version of QT (4.3.4), Eclipse and MinGW.
My problem is, that the Eclipse Indexer does not find ...
1
vote
3answers
99 views
Indexer in C# but without this [closed]
It is posible to craete indexer in C#, but something like this:
public class MyClass
{
Dictionary<int, string> myCollection = new Dictionary<int, string>();
public string Value[int ...
1
vote
5answers
102 views
C# extend indexer?
Is it possible to use extension methods to extend an indexer? I want to be able to get cell's value from DataGridViewCell of given DataGridViewRow using header text like this:
object o = ...
1
vote
1answer
43 views
Implementing Indexer from C# in Actionscript3
Within C# there're these things called indexers that do something similar to this:
public Something
{
public Object this[String s]
{
// do something with s
return ...
1
vote
2answers
202 views
Visual Basic Default Property vs C# Property
I'm converting Visual Basic.Net code to C# in my project. But I have some doubts on how to convert Visual Basic default property to C#. The first option that comes to me are the indexers. Lets imagine ...
1
vote
1answer
184 views
C# Static Indexer Should Not Compile, but Does [closed]
I realize we cannot have static indexers in C#. But the why does the code below compile correctly (under C# 4.0)?
Since Fred is a static class, it cannot even be instantiated. The declared static ...
1
vote
1answer
141 views
With NHibernate 2.1, how does one grab the first item in a collection using HQL to be used in the select clause?
Assume that I have a class Product:
public class Product
{
public virtual string Name { get; set; }
public virtual IList<Order> Orders { get; set; }
}
and class Order:
public class ...
1
vote
1answer
210 views
alphabetic indexer in android
I have a list view populated from the database, I have my scroll view with FastScroll enabled, the scroll bar is showing the widget but the indexing is not working
can any one help?
1
vote
2answers
152 views
How do you use indexers with array of objects?
How can we use indexers if we are using array of objects???
For a single object:
static void Main(string[] args)
{
MYInd mi = new MYInd();
mi[1] = 10;
Console.WriteLine(mi[1]);
mi[2, ...
1
vote
4answers
137 views
Encapsulation of reference types inside a collection
I declared a class with several properties
class Soil
{
public double AnglePhi { get; set; }
public double AngleDelta { get; set; }
.
.
.
}
Now to manipulate a collection of them I ...