a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
16 lines
249 B
C#
16 lines
249 B
C#
// 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);
|
|
}
|
|
}
|
|
}
|