public static void func1(string a,string c)
{
func2(a,c)--- error
}
public static void func2(string a,string c)
{
}
if im wrong please correct it. I need function to be called this way... function to be static.please help
if im wrong please correct it. I need function to be called this way... function to be static.please help
| ||||
|
show 4 more comments
feedback
|
|
Is the error a missing semicolon? The lack of error message makes this a guessing game. | |||
|
feedback
|
|
Nothing wrong with that. Forgot ";"? Or your names are in conflict with already used ones. Try changing them and see what happens. | ||||
|
feedback
|
|
I dont see anything wrong with the code snippet you have added, Can you give some more details on namespace for these functions | |||
|
feedback
|
MyType.Func2(a, b);– Adam Houldsworth Jul 29 '10 at 12:19