Googling sometimes helps. Sometimes, though, it only returns a lot of very popular answers that don’t quite fit the bill
I have a lot of C# classes, and I need to use a JS only function, Eval(), but unfortunately the JS file needs to access the classes. I have the files in the proper folders. However, I’m not sure how to ensure the JS file works with the class.
function RenameCategory(master : Master, code : String){
print ("Code To Run: " + code);
eval(code);
}
That returns the error "The name 'Master' does not denote a valid type ('not found'). "
Does anyone know what i need to do other than put them in the proper folders?