Im trying to create a function to add to my report,
C#
static public string CheckWords(params string[] Words)
this will not work when i try to use it to assign a value to a text box, I get a "The expression contains undefined function call".
If I change the function to,
static public string CheckWords(string[] Words)
This works but i would have to call the function for each word rather then sending all the words into the function at once.
any ideas?
C#
static public string CheckWords(params string[] Words)
this will not work when i try to use it to assign a value to a text box, I get a "The expression contains undefined function call".
If I change the function to,
static public string CheckWords(string[] Words)
This works but i would have to call the function for each word rather then sending all the words into the function at once.
any ideas?