We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be very helpful if the ComboBox in the emit view also appeared for generic methods.
Code:
using System; namespace simple_test; class Program { public static class Test<T> { public static void CallTest() { [Comptime] static void Test() { Compiler.MixinRoot(scope $"Console.WriteLine(\"{typeof(T).ToString(.. scope .())}\");"); } Console.WriteLine("CallTest"); Test(); } } public static void CallTest<T>() { [Comptime] static void Test() { Compiler.MixinRoot(scope $"Console.WriteLine(\"{typeof(T).ToString(.. scope .())}\");"); } Console.WriteLine("CallTest"); Test(); } public static void Main() { CallTest<Program>(); CallTest<String>(); Test<Program>.CallTest(); Test<String>.CallTest(); Console.Read(); } }
Tested with: aa4f9f7
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It would be very helpful if the ComboBox in the emit view also appeared for generic methods.
Code:
Tested with: aa4f9f7
The text was updated successfully, but these errors were encountered: