12 lines
191 B
C#
12 lines
191 B
C#
|
|
|
|
|
|
using System;
|
|
|
|
public static class Html
|
|
{
|
|
public static Action<System.IO.TextWriter> Write(object o)
|
|
{
|
|
return new Action<System.IO.TextWriter>(w => w.Write(o));
|
|
}
|
|
} |