[Solved] How to call public void(int i,string s)


public void checkout(String answer,int missedcallcount)

Declaration of this method shows, that you need to pass two parameters to call it properly – in this example, if you want to call this method you need to pass to it String as a first argument, and int as a second argument. Here is an example of correct calling this method:

checkout("Abcdef", 12345);

2

solved How to call public void(int i,string s)