Just like in topic. Why I can't use a C# function directly in main method? I can create a function inside my class and call from there the c# function without any problem.
I get Invalid token '(' exception.
class KSeF_createSessionToken
{
SRM_EDI_KSeF.Helper helper = new SRM_EDI_KSeF.Helper();
public static void main(Args _args)
{
KSeF_createSessionToken initSessionToken = new KSeF_createSessionToken();
initSessionToken.helper.prepareInitToken(token, challenge, timestamp, xmlFileName);
initSessionToken.helper.prepareInitToken();
initSessionToken.helper.prepareInitToken("q","w","e","r");
}