Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0117-4.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6edc55acc168050cb14527c25f9ab6473741d720 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs0117: 'System.Runtime.CompilerServices.IndexerNameAttribute' does not contain a definition for 'errorarg'
// Line: 

using System.Runtime.CompilerServices;

public class E
{
   [IndexerName("xxx", errorarg = "")]
   public int this[int index] {
      get {
         return 0;
      }
   }
}