RE: [Nant-users] FileFunctions Class

2004-09-17 Thread McCullough, Gary
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

[Nant-users] FileFunctions Class

2004-09-16 Thread Devin Grant
  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