hello,

i have a problem with c#, i´m new with these... Well, the problem is that i have a project with all my .cs and a library.dll that it is allready in the Debug folder. i have to run a function in learning.cs from my.cs, the code is this:

learning.cs

namespace PDL
{
public class C
{
.... code ....

public bool learn()
{
//the interest code//
}
}

In my.cs how can i call the function "public bool learn()" to start the code?


Thank u for ur time!