This is the first time I try in C#, so I dont know how to do it, here is the problem
In VB.NET you can specify optional arguments for a function (example code), how you do it in C#
[VB]
Public Function FUNCTIONNAME (Optional ByVal VARIABLE as String = "")
The code goes here
End Function
[/VB]
How you do the Optional argument in C#????
Thanks for the help
In VB.NET you can specify optional arguments for a function (example code), how you do it in C#
[VB]
Public Function FUNCTIONNAME (Optional ByVal VARIABLE as String = "")
The code goes here
End Function
[/VB]
How you do the Optional argument in C#????
Thanks for the help