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