source: azure_iot_hub_f767zi/trunk/asp_baseplatform/lwip/contrib-2.1.0/apps/LwipMibCompiler/SharpSnmpLib/Mib/Elements/Types/SequenceOf.cs@ 457

Last change on this file since 457 was 457, checked in by coas-nagasima, 4 years ago

ファイルを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csharp;charset=UTF-8
File size: 542 bytes
Line 
1using System.Collections.Generic;
2
3namespace Lextm.SharpSnmpLib.Mib.Elements.Types
4{
5 /// <summary>
6 /// The SEQUENCE OF type represents a list of data sets..
7 /// </summary>
8 public sealed class SequenceOf : BaseType
9 {
10 private string _type;
11
12 public SequenceOf(IModule module, string name, ISymbolEnumerator sym)
13 : base(module, name)
14 {
15 _type = sym.NextNonEOLSymbol().ToString();
16 }
17
18 public string Type
19 {
20 get { return _type; }
21 }
22 }
23}
Note: See TracBrowser for help on using the repository browser.