MATLABfromCSharp.LogInput.ToString C# (CSharp) Method

ToString() public method

Creates the string for the saving into the .txt file.
public ToString ( ) : string
return 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;
        }