view Test/Example/HelloWorld/StartHelloWorld.cs @ 42:ce46626dddb1

RemoteDG string send test
author riono <e165729@ie.u-ryukyu.ac.jp>
date Sun, 19 Sep 2021 17:04:08 +0900
parents 96fc5e71274e
children
line wrap: on
line source

using System;
using System.Threading;
using Christie_net.codegear;
using Christie_net.Test.Example.RemoteTake;

namespace Christie_net.Test.Example.HelloWorld {
public class StartHelloWorld : StartCodeGear {
    
    public StartHelloWorld(CodeGearManager cgm) : base(cgm) { }

    public static void Main(string[] args) {
        CodeGearManager cgm = CreateCgm(10000);
        cgm.Setup(new HelloWorldCodeGear());
        cgm.Setup(new FinishHelloWorld());
        cgm.GetLocalDGM().Put("helloWorld", "hello");
        cgm.GetLocalDGM().Put("helloWorld", "world");
        
    }
}
}