示例#1
0
 public Execute UnlessData(DataContainer container, string path)
 {
     return(this + $"unless data {container.ToDataCommand()} {path}");
 }
示例#2
0
 public Execute Store(Storage @in, DataContainer container, string path, DataType type, double scale)
 {
     return(this + $"store {@in} {container.ToDataCommand()} {path} {type} {scale}");
 }
示例#3
0
 public Execute IfData(DataContainer container, string path)
 {
     return(this + $"if data {container.ToDataCommand()} {path}");
 }