Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Common/src/TypeSystem/Common/MethodDesc.cs')
-rw-r--r--src/Common/src/TypeSystem/Common/MethodDesc.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/Common/src/TypeSystem/Common/MethodDesc.cs b/src/Common/src/TypeSystem/Common/MethodDesc.cs
index 74c48d8eb..7103433b0 100644
--- a/src/Common/src/TypeSystem/Common/MethodDesc.cs
+++ b/src/Common/src/TypeSystem/Common/MethodDesc.cs
@@ -133,7 +133,32 @@ namespace Internal.TypeSystem
return TypeHashingAlgorithms.ComputeMethodSignatureHashCode(_returnType.GetHashCode(), _parameters);
}
+ public SignatureEnumerator GetEnumerator()
+ {
+ return new SignatureEnumerator(this);
+ }
+
public override TypeSystemContext Context => _returnType.Context;
+
+ public struct SignatureEnumerator
+ {
+ private int _index;
+ private MethodSignature _signature;
+
+ public SignatureEnumerator(MethodSignature signature)
+ {
+ _signature = signature;
+ _index = -1;
+ }
+
+ public TypeDesc Current => _signature[_index];
+
+ public bool MoveNext()
+ {
+ _index++;
+ return _index < _signature.Length;
+ }
+ }
}
/// <summary>