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;
}
}
}