up vote 3 down vote favorite
share [g+] share [fb]
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

link|improve this question

38% accept rate
5  
Looks fine, are they in the same type? And you are missing the semi-colon. If the static method is in another type, you prefix the type name: MyType.Func2(a, b); – Adam Houldsworth Jul 29 '10 at 12:19
3  
Whats the error message? – w69rdy Jul 29 '10 at 12:22
I would bet money that the error or exception will explicitly and clearly explain what the problem is.. – Kieren Johnstone Jul 29 '10 at 12:25
Two functions are related with directory func(directoryInfo source,directoryInfo dest) still error. – Shiny Jul 29 '10 at 12:26
1  
Hints for getting useful answers quickly: 1) Post complete code. 2) If there's an error, post the error message. – Jon Skeet Jul 29 '10 at 12:44
show 4 more comments
feedback

3 Answers

Is the error a missing semicolon? The lack of error message makes this a guessing game.

link|improve this answer
feedback

Nothing wrong with that. Forgot ";"?

Or your names are in conflict with already used ones. Try changing them and see what happens.

link|improve this answer
feedback

I dont see anything wrong with the code snippet you have added, Can you give some more details on namespace for these functions

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.