C Shap保存point数据的时候怎么去掉括号
时间: 2024-05-03 13:22:43 浏览: 75
手把手教你使用SHAP(数据+代码+注释)
5星 · 资源好评率100%
可以使用以下方法将括号去掉:
1. 将point数据转换为字符串,使用String.Replace()方法去掉括号。
```
Point p = new Point(1, 2);
string pointStr = p.ToString().Replace("(", "").Replace(")", "");
```
2. 使用String.Format()方法格式化字符串,将括号替换为空字符串。
```
Point p = new Point(1, 2);
string pointStr = String.Format("{0},{1}", p.X, p.Y);
```
阅读全文