Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

ArConfig.cs 427B

123456789101112131415161718
  1. namespace uqac_ia_aspirobot.Common
  2. {
  3. public class ArConfig
  4. {
  5. public string PipeName { get; set; }
  6. public string PipeServer { get; set; }
  7. public int ServerThreadCount { get; set; }
  8. public void CopyTo(ArConfig other)
  9. {
  10. other.PipeName = PipeName;
  11. other.PipeServer = PipeServer;
  12. other.ServerThreadCount = ServerThreadCount;
  13. }
  14. }
  15. }