Hello All I want to call a function in thread which is taking some parameter like
FTPService FtpOj = new FTPService();
FtpOj.AvtivateFTP(item, ObjFTP, AppHelper.DoEventLog, AppHelper.DoErrorLog, AppHelper.EventMessage, strLableXmlPath, AppHelper.emailfrom);
- How can i call AvtivateFTP() method in thread and pass parameter inside function?
- Can we call only void type function inside thread?