| 1234567891011121314151617181920212223242526 |
- // cs0646.cs : Cannot specify the DefaultMember attribute on a type containing an indexer
- // Line : 8
- using System;
- using System.Reflection;
- [DefaultMember ("Item")]
- public class Foo {
- string bar;
-
- public static void Main ()
- {
- Console.WriteLine ("foo");
- }
- string this [int idx] {
- get {
- return "foo";
- }
- set {
- bar = value;
- }
- }
- }
-
|