Class declaration help

Feb 28 2005 1:24 PM
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; } } }

Answers (4)