I have an object which can have value as
3334.0 or
3
I need to check if it is having .0 or not. how can it be done?
If I do a string conevrsion i.e. object.tostring() or Convert.toString(object), then for the value 3334.0 it will be 3334.
Hence I cannot do so.
Basically I need to find if the value in the object is a decimal or not?
Help needed
Thanks
Would looking at it’s type help?