fudge
you can fudge this functionality by using the following, MS use this internally in the framework, using reflector check how Items property of the ListView control works
public class MyCollection
{
// Indexer
public MyCollection this[int index]
{
get
{
// Return an item of MyCollection here
}
}
}
public class foo
{
private static MyCollection staticColl;
// Property that returns the collection
public static MyCollection coll
{
get
{
return staticColl;
}
}
}
- Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
- Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!
Reply to: C# indexers
Collapse
You are not logged in or you do not have permission to access this page. This could be due to one of several reasons:
- You are not logged in. If you are already registered, fill in the form below to log in, or follow the "Sign Up" link to register a new account.
- You may not have sufficient privileges to access this page. Are you trying to edit someone else's post, access administrative features or some other privileged system?
- If you are trying to post, the administrator may have disabled your account, or it may be awaiting activation.
Logging in...
Previously on "C# indexers"
Collapse
-
But you have static methods and properties to access static data so why not support having a static indexer to access static data?
A static indexer would be nice when you have multiple static values that you would like to access by index or key, such as configuration data, that is not instance specific.
Anyway, just seems odd not to support such a concept when C# supports static methods and properties.....
Leave a comment:
-
static
an indexer is used to access instance data within a collection. Static methods & properties cannot access instance data so there would be little point in having one....
Leave a comment:
-
C# indexers
Can anyone explain WHY C# does not support static indexers
eg.
They would be very useful.PHP Code:public static string this[string key]
{
get
{
NameValueCollection config = (NameValueCollection)ConfigurationSettings.GetConfig("mysection/mysettings");
return config[key];
}
}
Tags: None
- Home
- News & Features
- First Timers
- IR35 / S660 / BN66
- Employee Benefit Trusts
- Agency Workers Regulations
- MSC Legislation
- Limited Companies
- Dividends
- Umbrella Company
- VAT / Flat Rate VAT
- Job News & Guides
- Money News & Guides
- Guide to Contracts
- Successful Contracting
- Contracting Overseas
- Contractor Calculators
- MVL
- Contractor Expenses
Advertisers
Contractor Services
CUK News
- Outside IR35 isn’t making a comeback in 2026/27 — it’s something more complex Aug 5 04:55
- Why contractors keep putting off their pension (and why I'm one of them) Today 02:43
- HMRC loan charge settlement offer: 3 things to check before you sign Yesterday 07:41
- HMRC standstill agreements extended to 72 months: why the term's doubled, and what to check before signing Jul 31 05:53
- Who owns the loans? Inside the mystery of the loan charge recall scandal Jul 30 06:20
- Umbrella company winding-up petitions in 2026: the practical guide for contractors Jul 29 05:29
- Payments on Account deadline: what contractors must do before July 31st — maybe for the final few times Jul 28 08:01
- Andy Burnham's first 100 days: five things contractors need from the new PM Jul 27 00:53
- Starmer vs Burnham on housing: What their rival plans mean for your contractor mortgage Jul 22 00:59
- Burnham's housing vision vs. Starmer's home-buying reforms: what it means for your contractor mortgage Jul 22 00:59

Leave a comment: