示例#1
0
 private void Print(Binary value, UInt16 index)
 {
     Console.WriteLine(_scadaDev.Name + ": Binary[" + index + "] " + value.ToString());
 }
示例#2
0
 private static void Print(Binary value, UInt16 index)
 {
     Console.WriteLine("Binary[" + index + "] " + value.ToString());                         
 }
示例#3
0
文件: ChangeSet.cs 项目: bkearns/dnp3
 public void Update(Binary update, ushort index, EventMode mode = EventMode.Detect)
 {
     updates.Add((IDatabase db) => db.Update(update, index, mode));
 }