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);
|
||
|
}
|
||
|
}
|
||
|
}
|