view Test/Example/RemoteTake/CreateRemoteTakeTest.cs @ 46:41aae40a611c

bug fix
author riono <e165729@ie.u-ryukyu.ac.jp>
date Fri, 07 Jan 2022 19:38:49 +0900
parents 87d88bc28ac0
children
line wrap: on
line source

using System;
using Christie_net.annotation;
using Christie_net.codegear;

namespace Christie_net.Test.Example.RemoteTake {
public class CreateRemoteTakeTest : CodeGear {
    //[Take] public RTCommand command;
    [Take] public RTCommand command;

    public override void Run(CodeGearManager cgm) {
        Console.WriteLine(command);
        cgm.GetLocalDGM().Put("finish" , "end");
    }
}
}