Hello everybody :)
I want to know if there is a way to change the culture of a GridViewDataColumn.
For instance I have the following code:
I want to know how can I change the culture of the currency for example: from dollars to euros in C#.
I hope you can help me.
Best regards, Jorge
I want to know if there is a way to change the culture of a GridViewDataColumn.
For instance I have the following code:
GridViewDataColumn column =
new
GridViewDataColumn();
column.FormatString =
"{0:c}"
;
I want to know how can I change the culture of the currency for example: from dollars to euros in C#.
I hope you can help me.
Best regards, Jorge