コード例 #1
0
ファイル: ReflectableSDO.cs プロジェクト: nixel2007/OneScript
        internal ReflectableSDO(ScriptDrivenObject instance, LoadedModule module)
        {
            _module   = module;
            _instance = instance;

            GatherProperties();
            GatherMethods();
        }
コード例 #2
0
ファイル: ReflectableSDO.cs プロジェクト: Shemetov/OneScript
        internal ReflectableSDO(ScriptDrivenObject instance, LoadedModule module)
        {
            _module = module;
            _instance = instance;

            GatherProperties();
            GatherMethods();

        }
コード例 #3
0
ファイル: ReflectableSDO.cs プロジェクト: nixel2007/OneScript
 public ReflectableSDO(ScriptDrivenObject instance, LoadedModuleHandle module)
     : this(instance, module.Module)
 {
 }
コード例 #4
0
ファイル: ScriptingEngine.cs プロジェクト: Shemetov/OneScript
 public void InitializeSDO(ScriptDrivenObject sdo)
 {
     sdo.Initialize(_machine);
 }
コード例 #5
0
ファイル: ReflectableSDO.cs プロジェクト: Shemetov/OneScript
 public ReflectableSDO(ScriptDrivenObject instance, LoadedModuleHandle module)
     : this(instance, module.Module)
 {
 }