[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / tests / gtest-autoproperty-04.cs
1 using System;
2
3 namespace MonoTests
4 {
5         public abstract class MainClass
6         {
7                 protected virtual string [] foo { get; set; }
8                 public abstract string [] bar { get; set; }
9
10                 public static void Main (string [] args)
11                 {
12                         Console.WriteLine ("Hello World!");
13                 }
14         }
15         public class ChildClass : MainClass
16         {
17                 protected override string [] foo { get; set; }
18                 public override string [] bar { get; set; }
19         }
20 }