I am trying to mimic an old vb6 dll with a new .net one. The mimicry has to be perfect so that that callers don't know they are using a new .dll.

I have a curiousness though. In VB6 it has the following in the object library:

Property BankList(Index As Long) As String

But AFAIK property this can't be done in .net?

The closest I can get is creating a function that exhibits that behaviour but then the COM type goes from Property to Method.

Can anyone suggest how I would create that signature with a property?

link|improve this question

58% accept rate
BTW there's no such thing as C#.NET. The language is named "C#". – John Saunders May 6 '11 at 15:29
feedback

4 Answers

up vote 1 down vote accepted

Indexed properties are available in .Net/C#, but you can't name them:

public String this[long index]
{
    get; set;
}

This makes a property called Item but you don't use this name in C#:

myObj[1L];

If you want to call out to a named property in COM with C# 4.0, you can:

excel.Range["a"];

http://blogs.msdn.com/b/kirillosenkov/archive/2009/10/20/indexed-properties-in-c-4-0.aspx

Finally, if you want to have the index named for COM languages, you can use the IndexerNameAttribute to expose the indexer as a named property.

link|improve this answer
feedback

You can adorn a regular indexer with the IndexerNameAttribute attribute to expose a name for it to other languages. I'm not sure if this will achieve your goal, though.

Unfortunately, C# only supports the calling of named indexers as part of COM interop, there is no supported language way of implementing your own (i.e., a class can only have the default indexer with an IndexerNameAttribute attribute).

You can create something that looks similar for C# callers by implementing a type with an indexer and then having a property of that type, but it doesn't map exactly to the VB6 equivalent you need.

See also: Using Indexers (C#)

Aside
As has been mentioned in other answers, while C# doesn't support named indexers, the .NET CLR and some other languages, such as VB.NET, do. You may want to consider changing your target language in order to get this feature.

link|improve this answer
feedback

According to http://blogs.msdn.com/b/kirillosenkov/archive/2009/10/20/indexed-properties-in-c-4-0.aspx you can't declare indexed properties in C#. However, in contrast to what some of the other answers state, the CLR does support them, and you can declare them in VB.NET.

link|improve this answer
feedback

Named parametrised properties cannot be created in C# (only a single default one, called this is available).

There are a number of options:

  • Change the interface (but that misses the point as client code will need to change).
  • Use VB (.net), which can create such properties.
  • Create an adapter in C++ to give complete control at a COM level.

The first would mean changing the interface, which breaks your requirement. The final option gives the most control but is significantly more complex (unless you already know C++ COM development). I would go with VB.NET.

link|improve this answer
1  
One point to add to this. If you're intent on using C#, you could create your dll in C#, using whatever capabilities it has, but then write a small "wrapper" in vb that supports the named parameterized properties and just passes through called to the C# code. That way, you keep compatibility, but yet have all the new code in C#. Personally, I prefer VB so I'd likely just do it in VB, but if you (or the team) prefers C#, that's certainly an option. – drventure May 6 '11 at 16:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.