linux-packaging-mono/mcs/tests/gtest-301-lib.cs

12 lines
211 B
C#
Raw Permalink Normal View History

// Compiler options: -t:library
using System;
public static class Factory<BaseType> where BaseType : class
{
public static BaseType CreateInstance (params object[] args)
{
return null;
}
}