Пример #1
0
        public ModuleInputface <T> CreateInputface <T>() where T : struct
        {
            var res = new ModuleInputface <T>();

            this.IOFaces.Add(res);
            return(res);
        }
Пример #2
0
 public SyncModuleOutputface(ValueType initialValue = default(ValueType))
 {
     this.Value           = initialValue;
     IsChangedInThisCycle = true;
     Input = new Execute.ModuleInputface <ValueType>();
 }