view Test/Example/HelloWorld/FinishHelloWorld.cs @ 36:3929e66a6645

add RemoteTakeTest
author riono <e165729@ie.u-ryukyu.ac.jp>
date Tue, 11 May 2021 19:02:08 +0900
parents 9e31b8c7a5bd
children
line wrap: on
line source

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

namespace Christie_net.Test.Example.HelloWorld {
public class FinishHelloWorld : CodeGear {
    [Take] private string hello;
    [Take] private string world;

    public override void Run(CodeGearManager cgm) {
        cgm.GetLocalDGM().Finish();
    }
}
}