[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / tests / gtest-301-lib.cs
1 // Compiler options: -t:library
2
3 using System;
4
5 public static class Factory<BaseType> where BaseType : class
6 {
7     public static BaseType CreateInstance (params object[] args)
8     {
9         return null;
10     }
11 }