-
Apprentice
hello all;
maybe u are all professionals and have no time for beginners like me but i hope that some one have a moment for that
if i have a project like this
***
MainServer
|-Questions
| |-Math
|-Ops
|-packetdev
*****
the Ops.cs has a "public void Option(int choose)
that packetdev receives a Var(choose), what should be the code to run the public void option under Ops class ??
Last edited by samehvan; 23-05-08 at 10:04 PM.
-
-
Valued Member
Re: Help with a link code
Last edited by h.a.y.d.z; 25-07-13 at 05:57 PM.
-
Apprentice
Re: Help with a link code
-
Valued Member
Re: Help with a link code
Last edited by h.a.y.d.z; 25-07-13 at 05:57 PM.
-
Apprentice
Re: Help with a link code
it ddnt work also coz all the functions are non static so i will have to change them all to be statics but ty again , and i got it i used the MSDN help and it worked , ty very much for ur concern
-
Valued Member
Re: Help with a link code
try
Ops op = new Ops();
op.Option(choose);
make sure they are on the same namespace.