2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2026-03-13 11:20:39 +00:00

IAsyncEnumerable

This commit is contained in:
2026-02-02 22:22:47 +03:00
parent 3f7e3992c1
commit 7d958bfaf8
3 changed files with 32 additions and 2 deletions

View File

@@ -143,7 +143,7 @@ public class FunctionTemplate : MemberTemplate
{
rtType = TRU.FromType(mi.ReturnType.GetGenericArguments()[0]);
}
else if (genericRtType == typeof(IEnumerable<>))// || genericRtType == typeof(IAsyncEnumerable<>))
else if (genericRtType == typeof(IEnumerable<>) || genericRtType == typeof(IAsyncEnumerable<>))
{
// get export
rtType = TRU.FromType(mi.ReturnType.GetGenericArguments()[0]);