Решена ошибка кодгена при генерации асинхронных методов в генерик возвращаемым типом

This commit is contained in:
2025-02-05 23:46:06 +03:00
parent d780d0ea0b
commit 5bcdb968f0
13 changed files with 115 additions and 118 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ public class Printer : IPrinter
return Name;
}
public TransmittedSharedObject<IPage> Print(string text)
public async Task<TransmittedSharedObject<IPage>> Print(string text)
{
return new Page {Text = text};
}