Hi,
is it possible to compare two variables of data type [i]Any[/i] without casting. Like [code] [FunctionBlock] public class Test { \t[Input, DataType("ANY_NUM")] \tpublic Any Value1; \t \t[Input, DataType("ANY_NUM")] \tpublic Any Value2; \t[Output] \tpublic bool Identical; \t[Initialization] \tpublic void __Init() \t{ \t\tIdentical = false; \t} \t[Execution] \tpublic void __Process() \t{ \t\tif (Value1.pRuntimeTypeHandle == Value2.pRuntimeTypeHandle) \t\t\tIdentical = Value1 == Value2; \t} } [/code]