UnityInjectionV2
UnityInjectionV2 copied to clipboard
请教下关于可迭代类型的织入方式
[AOP]
private IEnumerable<int> TestEnumerable()
{
yield return 1;
yield return 2;
yield return 3;
}
请教下,类似这种该如何织入呀?