Exemplo n.º 1
0
 public DynaClass(string ClassName, string ScopeOptions)
     : this(ClassName, DynaCode.GetScope(ScopeOptions))
 {
 }
Exemplo n.º 2
0
 public void SetScope(string ScopeOptions)
 {
     SetScope(DynaCode.GetScope(ScopeOptions));
 }
Exemplo n.º 3
0
 public DynaProperty(string PropertyName, Type ValueType, string ScopeOptions)
     : this(PropertyName, ValueType.FullName, DynaCode.GetScope(ScopeOptions))
 {
 }
Exemplo n.º 4
0
 public DynaField(string VarName, Type ValueType, string ScopeOptions)
     : this(VarName, ValueType.FullName, DynaCode.GetScope(ScopeOptions))
 {
 }
Exemplo n.º 5
0
 public DynaConstructor(string MethodName, string ScopeOptions)
     : this(MethodName, DynaCode.GetScope(ScopeOptions))
 {
 }
Exemplo n.º 6
0
 public DynaMethod(string MethodName, string ScopeOptions, string ReturnType)
     : this(MethodName, DynaCode.GetScope(ScopeOptions), ReturnType)
 {
 }