コード例 #1
0
        public void setup()
        {
            context = typeof(child_act).RootContext();

            instance = new child_act();

            context.Contexts.First().SetInstanceContext(instance);
        }
コード例 #2
0
        public void setup()
        {
            context = typeof(child_act).RootContext();

            instance = new child_act();

            context.Contexts.First().SetInstanceContext(instance);
        }
コード例 #3
0
        public void setup()
        {
            parentContext = new ClassContext(typeof(parent_act));

            childContext = new ClassContext(typeof(child_act));

            parentContext.AddContext(childContext);

            instance = new child_act();

            parentContext.Build();
        }
コード例 #4
0
        public void setup()
        {
            parentContext = new ClassContext(typeof(parent_act));

            childContext = new ClassContext(typeof(child_act));

            parentContext.AddContext(childContext);

            instance = new child_act();

            parentContext.Build();
        }