Defining optional parameters
Posted: Thu Dec 20, 2012 3:10 am
I don't found a way to create a method can takes optional arguments.
In Cobra has this able?
In Cobra has this able?
Discussion about the Cobra programming language.
http://cobra-language.com/forums/
public static void ExampleMethodWithDefiningOptionalParameters(string name = "Default name")
{
_name = name;
}