2
votes
3answers
84 views
What is the relationship between indexers and properties in C#?
Is an indexer an extended version of a property?.
0
votes
1answer
41 views
How to set enum Type indexer in Spring.NET configuration xml?
I have this code:
public enum StateId { NotSet = 0, AL, ..., WY }
public class EnumBasedArray<I,V>:IEnumerable<V>
{
public V this[I index]
{
get { return _d …
0
votes
1answer
30 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;}
}
cla …
2
votes
8answers
346 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 follo …
0
votes
4answers
51 views
Iterating Linq result set using indexers
Let's ay I have this query:
var results = from row in db.Table select row;
How can I access this:
string name = results[0]["columnName"];
0
votes
4answers
41 views
How to access a property for each memebr of an indexer using reflection in C# .net 2.0
I have the following method:
object GetIndexer()
The result of the method is an indexer of the type:
SomeCollection<T>
Now T can be anything, by I know that each T exte …
0
votes
2answers
40 views
How can I use a DebuggerDisplay attribute on an indexer class…
I am trying to do something like this on an indexer class:
[DebuggerDisplay("Debug: {_Items[index]}")]
public override string this[byte index]
However, when the debugger …
0
votes
1answer
33 views
How to extract an individual item of an EntityCollection thru xaml binding?
Hi!
I have a Contact entity that exposes a navigation proeprty for child Phone entities.
Public Class Contact : Inherits EntityObject
Public Property Phones() As EntityCo …
0
votes
2answers
82 views
C# Indexer Usage
To have an indexer we use the following format:
class ClassName
{
DataType[] ArrayName = new DataType[Length];
public DataType this[int i]
{
get { return Arr …
4
votes
3answers
187 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 co …
1
vote
3answers
101 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.
0
votes
4answers
310 views
C# Indexer Property Question
I have a class like this:
public class SomeClass
{
private const string sessionKey = "__Privileges";
public Dictionary<int, Privilege> Privileges
{
get
…
0
votes
1answer
45 views
Indexing text files in PHP
I have been set a challenge to create an indexer that takes all words 4 characters or more, and stores them in a database along with how many times the word was used.
I have to …
1
vote
6answers
485 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, t …
1
vote
2answers
112 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 ...
…
