Compiler Error CS1551
Indexers must have at least one parameter
An indexer that takes no arguments was declared.
The following sample generates CS1551:
C#
// CS1551.cs
public class MyClass
{
int intI;
int this[] // CS1551
// try the following line instead
// int this[int i]
{
get
{
return intI;
}
set
{
intI = value;
}
}
public static void Main()
{
}
}
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
.NET feedback
.NET is an open source project. Select a link to provide feedback: