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