How to create a method with overloading concept without changing the constructor?
I want to use a thread with parameters, but im not sure if I need to put pratameters because some time it's not necessary for me to let the method take parameters. Again is there away to create a method with parameters but its not obligatory to give parameters, I don't want to use overloading concept.
public void DoIt(string text){
//do something with text //do other things
}
DoIt(); //the method will do other things without paying attention to do something with text