views:

107

answers:

1

I have a dll called utilities which contains some helper methods and I want to use one of the helper methods inside a T4 template like <#=tbl.ClassName.ToProper()#>

+2  A: 

You will need to use assembly and import directives to reference your dll and the namespace where your helper class is defined.

Oleg Sych