KB Issue
What causes my C# code to throw the variable is used like a method?
Issue Details
In C#, you need to wrap your Variables with brackets [v], not with parentheses () like in VB.NET.
Recreate Issue
This is caused when you wrap a variable with parenthesis in C# language.
(Ignore the open and closing brackets in these examples)
Code Example
Response.Write(getFile + "(" + GetName(v) + ") Uploaded Successfully!");
Resolve Issue
Replace the (v) with [v]
Code Example
Response.Write(getFile + "(" + GetName[v] + ") Uploaded Successfully!");