STM32F769IDiscovery  1.00
uDANTE Audio Networking with STM32F7 DISCO board
ISymbolEnumerator.cs
Go to the documentation of this file.
1 using System.Collections.Generic;
2 
3 namespace Lextm.SharpSnmpLib.Mib
4 {
5  public interface ISymbolEnumerator: IEnumerator<Symbol>
6  {
7  bool PutBack(Symbol item);
8  }
9 }
Description of Symbol.
Definition: Symbol.cs:20