Skip to content

Commit bdbd3b7

Browse files
author
linzhijun
committed
fix
1 parent dc13b0d commit bdbd3b7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

csharp/ToolGood.Algorithm/Internals/Functions/Csharp/Function_SPLIT.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public override Operand Evaluate(AlgorithmEngine engine, Func<AlgorithmEngine, s
2828
return ParameterError(2);
2929
}
3030

31-
return Operand.Create(args1.TextValue.Split(args2.TextValue.ToArray()));
31+
return Operand.Create(args1.TextValue.Split(new[] { args2.TextValue }, StringSplitOptions.None));
3232
}
3333
public override OperandType GetResultType()
3434
{

0 commit comments

Comments
 (0)