Updated:
July 2008
You can use the class feature blocks in your text templates to add helper functions. Helper functions let you avoid repeating common code. The general syntax is as follows.
The following code example shows how to use the class feature.
<#+
private string FixWhiteSpaces(string s)
{
return(Regex.Replace(s," ","").ToString());
}
#>
Tasks
Other Resources
Date
|
History
|
Reason
|
|---|
July 2008 |
Rewrote and refactored project.
| Content bug fix. |