Class declaration help
Hi
There is a problem in class declaration of this code.Im not able to figure out.Please help
namespace test
{
public class MyClass : System.Collections.IEnumerator, System.EnterpriseServices.ServicedComponent
{
public MyClass()
{
}
public void Reset()
{
}
public object Current
{
get
{
return null;
}
}
public bool MoveNext()
{
return false;
}
}
}
bilnaadPosted Feb 28, 2005, 6:09 PM
bilnaadPosted Feb 28, 2005, 6:05 PM
bilnaadPosted Feb 28, 2005, 6:02 PM
mikerPosted Feb 28, 2005, 2:06 PM