diff options
Diffstat (limited to 'crypto/src/asn1/LazyDLSet.cs')
-rw-r--r-- | crypto/src/asn1/LazyDLSet.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/src/asn1/LazyDLSet.cs b/crypto/src/asn1/LazyDLSet.cs index 551200513..1b8b3ef40 100644 --- a/crypto/src/asn1/LazyDLSet.cs +++ b/crypto/src/asn1/LazyDLSet.cs @@ -1,5 +1,5 @@ using System; -using System.Collections; +using System.Collections.Generic; using System.IO; namespace Org.BouncyCastle.Asn1 @@ -28,7 +28,7 @@ namespace Org.BouncyCastle.Asn1 } } - public override IEnumerator GetEnumerator() + public override IEnumerator<Asn1Encodable> GetEnumerator() { byte[] encoded = GetContents(); if (null != encoded) |