Example #1
0
        public void ToString(FString result, char split, bool quot)
        {
            int count = _values.Count;

            for (int n = 0; n < count; n++)
            {
                if (n > 0)
                {
                    result.Append(split);
                }
                object value = _values[n];
                if (value != null)
                {
                    RCsv.FormatField(result, value.ToString(), quot);
                }
            }
        }
Example #2
0
        public void ToString(FString result)
        {
            int count = _values.Count;

            for (int n = 0; n < count; n++)
            {
                if (n > 0)
                {
                    result.Append(',');
                }
                object value = _values[n];
                if (value != null)
                {
                    RCsv.FormatField(result, value.ToString(), false);
                }
            }
        }