mirror of
https://gitee.com/dotnetchina/MiniExcel.git
synced 2024-11-29 18:38:08 +08:00
//2022-09-22 参数统一转换为大写,避免传入小写的参数时出错
This commit is contained in:
parent
d4365111bc
commit
87d6eb65b3
@ -72,7 +72,9 @@
|
||||
/// <param name="row">The row, 1-based.</param>
|
||||
public static bool ParseReference(string value, out int column, out int row)
|
||||
{
|
||||
column = 0;
|
||||
//2022-09-22 参数统一转换为大写,避免传入小写的参数时出错
|
||||
value = value.ToUpper();
|
||||
column = 0;
|
||||
var position = 0;
|
||||
const int offset = 'A' - 1;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user