I have a few lines i borrowed from the codebank here for my orginal vb project

i am having trouble converting it over to c#

in partular the line line.Append(","c)

im just not sure what the c is doing ive been reading through the stringbuilder on msdn but im still not sure what the eqivlancy in c# should be


can anyone help point me in the right direction
thanks



VB Code:
  1. Dim line As New System.Text.StringBuilder
  2.             Dim index As Integer
  3.  
  4.             If header = True Then
  5.  
  6.                 'Iterate over all the columns in the table and get the column names.
  7.                 For index = 0 To table.Columns.Count - 1 Step 1
  8.  
  9.                     If index > 0 Then
  10.                         'Put a comma between column names.
  11.                         line.Append(","c)
  12.                     End If
  13.  
  14.                     'Precede and follow each column name with a double quote
  15.                     'and escape each double quote with another double quote.
  16.                     line.Append(""""c)
  17.                     line.Append(table.Columns(index).ColumnName.Replace("""", """"""))
  18.                     line.Append(""""c)