UnityInjectionV2 icon indicating copy to clipboard operation
UnityInjectionV2 copied to clipboard

请教下关于可迭代类型的织入方式

Open danyow opened this issue 1 year ago • 0 comments

    [AOP]
    private IEnumerable<int> TestEnumerable()
    {
        yield return 1;
        yield return 2;
        yield return 3;
    }

请教下,类似这种该如何织入呀?

danyow avatar Aug 19 '24 05:08 danyow