12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace UAS_PLCDataReader.PublicMethod
- {
- class PollingTimer : System.Timers.Timer
- {
- private object polling;
- public object Polling
- {
- get
- {
- return polling;
- }
- set
- {
- polling = value;
- }
- }
- }
- }
|