We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d436511 commit 87d6eb6Copy full SHA for 87d6eb6
1 file changed
src/MiniExcel/Utils/ReferenceHelper.cs
@@ -72,7 +72,9 @@ internal static partial class ReferenceHelper
72
/// <param name="row">The row, 1-based.</param>
73
public static bool ParseReference(string value, out int column, out int row)
74
{
75
- column = 0;
+ //2022-09-22 参数统一转换为大写,避免传入小写的参数时出错
76
+ value = value.ToUpper();
77
+ column = 0;
78
var position = 0;
79
const int offset = 'A' - 1;
80
0 commit comments