i have here my code:
Can anyone share some code of Geonology using C#?
Code:
namespace GEONOLOGY
{
public class AGENT
{
int no;
String name;
AGENT left;
AGENT right;
//not yet develop the implementation.
}
}
Comment