1 using System.Collections.Generic; 2 3 namespace Lextm.SharpSnmpLib.Mib 4 { 5 public interface ISymbolEnumerator: IEnumerator<Symbol> 6 { PutBack(Symbol item)7 bool PutBack(Symbol item); 8 } 9 } 10