Hi community!
Is there any way to create new method keywords?
For example:
ClassMethod TestOne() [ MyKeyword = MyValue ]
{
// Implementation
}Another doubt (maybe another topic)
How can I generate new methods at compilation time for the same class?
I tried method generators, but It only gets compiled when I compile for the second time.
I also read this comment but I could not find out how to generate the methods and get them compiled in the first compilation.
For example:
Class util.Test
{
ClassMethod TestOne()
{
Write 1
}
ClassMethod TestTwo()
{
Write 1
}
}
Expected:
Cl

