Skip to content

Commit 860dd92

Browse files
author
linzhijun
committed
fix C# 与java 代码同步
1 parent 59a3734 commit 860dd92

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

csharp/ToolGood.Algorithm2/Internals/CharUtil.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ public static char StandardChar(char o)
1616
if (o == '”') return '"';
1717
if (o == '〔') return '(';
1818
if (o == '〕') return ')';
19-
//if (o == '=') return '=';
20-
//if (o == '+') return '+';
21-
//if (o == '-') return '-';
19+
if (o == '=') return '=';
20+
if (o == '+') return '+';
21+
if (o == '-') return '-';
2222
if (o == '×') return '*';
2323
if (o == '÷') return '/';
24-
//if (o == '/') return '/';
24+
if (o == '/') return '/';
2525
//if (o == '【') return '[';
2626
//if (o == '】') return ']';
2727
//if (o == '(') return '(';

0 commit comments

Comments
 (0)