Hi seriverma,
As there is no word called semicomma hope you were trying to say it semicolon so refer below code.
csv += column.ColumnName + ","c
replace above line of code with below
csv += column.ColumnName + ";"c
csv += row(column.ColumnName).ToString().Replace(",", ";") + ","c
replace above line of code with below
csv += row(column.ColumnName).ToString() + ";"c
and if you mean to say that you want to replace comma with fullstop then replace above both line of code with below
csv += column.ColumnName + "."c
csv += row(column.ColumnName).ToString() + "."c