Files
2025-11-07 20:19:23 +08:00

10 lines
182 B
C#

using System.Collections.Generic;
namespace Lextm.SharpSnmpLib.Mib
{
public interface ISymbolEnumerator: IEnumerator<Symbol>
{
bool PutBack(Symbol item);
}
}