Exemplo n.º 1
0
Arquivo: IO.cs Projeto: victorko/vsc
 internal void Output(double value)
 {
     if (this.OutputPerformed != null)
     {
         var eventArgs = new OutputPerformedEventArgs(value);
         this.OutputPerformed(this, eventArgs);
     }
 }
Exemplo n.º 2
0
 internal void Output(double value)
 {
     if (this.OutputPerformed != null)
     {
         var eventArgs = new OutputPerformedEventArgs(value);
         this.OutputPerformed(this, eventArgs);
     }
 }