linux-packaging-mono/mcs/tests/gtest-exmethod-17-lib.cs

16 lines
249 B
C#
Raw Normal View History

// Compiler options: -t:library
using System;
namespace Testy
{
public static class TestExtensions
{
public static string MyFormat (this Object junk,
string fmt, params object [] args)
{
return String.Format (fmt, args);
}
}
}