MATLABfromCSharp.LogInput.ToString C# (CSharp) 메소드

ToString() 공개 메소드

Creates the string for the saving into the .txt file.
public ToString ( ) : string
리턴 string
        public override string ToString()
        {
            string fileWrite;
            if(absoluteTime == null)
                fileWrite = keyVariableName + "=" + attribute + "=" + elementPath + "=" + Range.ToString() + "=" + timeSpaceFormatString();
            else
                fileWrite = keyVariableName + "=" + attribute + "=" + elementPath + "=" + AbsoluteTimeToString() + "=" + timeSpaceFormatString();
            return fileWrite;
        }