Data.CurrentMonitorDataLog.ToString C# (CSharp) 메소드

ToString() 공개 메소드

public ToString ( ) : string
리턴 string
        public override string ToString()
        {
            return base.ToString() + ",\r\n" +
                " \"PollPeriod\" : " + PollPeriod.ToString() + ",\r\n" +
                " \"NorthVoltToFreqSlope\" : " + NorthVoltToFreqSlope.ToString() + ",\r\n" +
                " \"SouthVoltToFreqSlope\" : " + SouthVoltToFreqSlope.ToString() + ",\r\n" +
                " \"FreqToCurrentSlope\" : " + FreqToCurrentSlope.ToString() + ",\r\n" +
                " \"NorthOffset\" : " + NorthOffset.ToString() + ",\r\n" +
                " \"SouthOffset\" : " + SouthOffset.ToString() + ",\r\n" +
                " \"NorthCurrent\" : " + NorthCurrent.ToString() + ",\r\n" +
                " \"SouthCurrent\" : " + SouthCurrent.ToString();
        }