PetSerAl, T4 Utility Methods " " , TextTransformation, , , TextTransformation. this .
, , T4 ( ), TextTransformation , . :
<#
var @object = new SampleClass(this);
@object.SayHello();
#>
<#+
public class SampleClass
{
private readonly TextTransformation _writer;
public SampleClass(TextTransformation writer)
{
if (writer == null) throw new ArgumentNullException("writer");
_writer = writer;
}
public void SayHello()
{
_writer.WriteLine("Hello");
}
}
#>
MSDN.