ugh
From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Devin Grant
Sent: Thursday, September 16, 2004
2:47 PM
To: [EMAIL PROTECTED]
Subject: [Nant-users]
FileFunctions Class
Can somebody please add a new function call
“get-text” to the FileFunctions class?
Example:
[Funct
Can somebody please add a new function call “get-text”
to the FileFunctions class?
Example:
[Function("get-text")]
public string GetText(string
fileName)
{
string text = "";
if (File.Exists(fileName))
text =
GetTextFromFile(fileName);
return text;
}
pri