I am trying to read a value and if the first three digits of the value are “000” then it should cause an error.
Currently I have "item.Value.ToString.Substring(0,2) = “000"” but this does not catch the that the first three digits are zeros. However this is also combined in an or statement to check if the first three digits are “666”.
What is the correct syntax to accomplish this? Thanks.