public string remoteCall(string Namespace, string Class, string Function, params object[] p)remoteCall("Cus", "Customer", "GetCustomerTransactions", 123, "2020-01-01", "2021-01-01")remoteCall function in a way that it would suggest the id and the 2 dates instead of it being a params object[].public string remoteCall(Cus.Customer.GetCustomerTransactions, int Id, string date1, string date2)Cus.Customer.GetCustomerTransactions as the first param, visual studio automatically suggests Id, date1 and date2 as the possible params.