Using indexed properties with the i4o library
I want to define some properties in the class using the [Indexable ()] attribute to use the class with the i4o library ( http://www.codeplex.com/i4o ), but when I try to compile the code, Visual Studio says it doesn't can find the namespace to index.
Is this part of the CLR and what namespace / library do I need for it to compile?
a source to share
[Indexable ()] is not an attribute included in the .NET Framework. It has been removed from i4o in favor of other approaches. See this blog post for how to use it.
a source to share
Not part of the standard structure. You will need to determine which assembly contains this IndexableAttribute and reference it in your project.
Where is he located? I dont know. Who told you that you need to do this? Is it i4o? If so, it might be one of the binaries that come with the i4o project.
a source to share