Ejemplo n.º 1
0
 public Func <T> UnsafeFunc <T>(string content, params NamespaceConverter[] usings)
 {
     Using(usings);
     return(content == default ? null : DelegateOperator <Func <T> > .UnsafeDelegate(content, AssemblyBuilder.Compiler.Domain, OptionAction, _methodAction, _oopAction, _usings.ToArray()));
 }
Ejemplo n.º 2
0
 public Action <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> UnsafeAction <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(string content, params NamespaceConverter[] usings)
 {
     Using(usings);
     return(content == default ? null : DelegateOperator <Action <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> > .UnsafeDelegate(content, AssemblyBuilder.Compiler.Domain, OptionAction, _methodAction, _oopAction, _usings.ToArray()));
 }
Ejemplo n.º 3
0
 public Func <T1, T2, T3, T4, T5, T6, T7, T8, T9> UnsafeFunc <T1, T2, T3, T4, T5, T6, T7, T8, T9>(string content, params NamespaceConverter[] usings)
 {
     return(content == default ? null : DelegateOperator <Func <T1, T2, T3, T4, T5, T6, T7, T8, T9> > .UnsafeDelegate(content, AssemblyBuilder.Compiler.Domain, OptionAction, _methodAction, _oopAction, usings.ToArray()));
 }
Ejemplo n.º 4
0
 public T UnsafeDelegate <T>(string content, params NamespaceConverter[] usings) where T : Delegate
 {
     return(content == default ? null : DelegateOperator <T> .UnsafeDelegate(content, AssemblyBuilder.Compiler.Domain, OptionAction, _methodAction, _oopAction, usings.ToArray()));
 }
Ejemplo n.º 5
0
 public Action <T1, T2, T3> UnsafeAction <T1, T2, T3>(string content, params NamespaceConverter[] usings)
 {
     Using(usings);
     return(content == default ? null : DelegateOperator <Action <T1, T2, T3> > .UnsafeDelegate(content, AssemblyBuilder.Compiler.Domain, OptionAction, _usings.ToArray()));
 }