how to remove comma from a string in c# code example
Example: how to remove all comma from string c#
string data="Mumbai,400049,Andheri ";
//Removing All Comma's from String
string address=data.Replace(","," ");
string data="Mumbai,400049,Andheri ";
//Removing All Comma's from String
string address=data.Replace(","," ");