예제 #1
0
 /// <summary>
 /// Get Qwerk's analog inputs service.
 /// </summary>
 ///
 /// <returns>Returns Qwerk's analog inputs service.</returns>
 ///
 /// <remarks>For the list of possible exceptions, see documentation to
 /// <see cref="Qwerk.AnalogIn(Qwerk)"/>.</remarks>
 ///
 public Qwerk.AnalogIn GetAnalogInService( )
 {
     if (analogIns == null)
     {
         analogIns = new AnalogIn(this);
     }
     return(analogIns);
 }
예제 #2
0
파일: Qwerk.cs 프로젝트: EnergonV/BestCS
 /// <summary>
 /// Get Qwerk's analog inputs service.
 /// </summary>
 /// 
 /// <returns>Returns Qwerk's analog inputs service.</returns>
 /// 
 /// <remarks>For the list of possible exceptions, see documentation to
 /// <see cref="Qwerk.AnalogIn(Qwerk)"/>.</remarks>
 /// 
 public Qwerk.AnalogIn GetAnalogInService( )
 {
     if ( analogIns == null )
     {
         analogIns = new AnalogIn( this );
     }
     return analogIns;
 }