syntax - What does "FunctionName(bool() args)" mean in C#? -
Can anyone tell me that This is an invalid syntax in C #. You probably meant this Note that there is no return type, so it should probably be function_name (bool) is in ARG?
function name (bool [] rgs)
( []
instead of ()
) , Which means that one takes one as the args
. zero
function name (bool [] args)
(Or some other type than zero
)
Comments
Post a Comment