Csharp_attribute_reflection 待更。。。 参考https://docs.unity3d.com/Manual/Attributes.html ↩ 2022-05-22 code C# C# code
C# delegate lambda event 委托(delegate)声明委托(Delegate)delegate 实例化委托(Delegate)1234public delegate void printString(string s);...printString ps1 = new printString(WriteToScreen);printString ps2 = new printString(WriteToFile); 2022-05-21 code C# C# code