The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
There is a bug with the calcultate object:
just try it in your sample manual calculation.
for example
A 10
B =[A]<12 (return true, this one is okay)
B =[A]<=12 (return invalid expression, not good)
B =[A]>12 (return false, this one is okay
B =[A]>=12 (return invalid expression, not good)
B =[A]=<12 (runtime error, needs a try catch)
B =[A]=>12 (runtime error, needs a try catch)
I just find out that the problem exists only when one of the component in the formula is a varaible name.
A 1
B =[A]>=2
not working
but
B =1>=2
works fine.
ADAdministrator Syncfusion Team November 16, 2004 11:59 AM
This problem has been fixed. Thank you for reporting it. We are also internally swapping => into >= and =< into <= now.
MTMichel T DallaireNovember 25, 2004 05:39 AM
They now all work just right in 3.0.0.19rc
thank you.