string str = "Assigned_To_You".Replace("_", string.Empty);
solved How to replace ‘Underscore’ by ‘without space’ in C#.net
string str = "Assigned_To_You".Replace("_", string.Empty);
solved How to replace ‘Underscore’ by ‘without space’ in C#.net