Userdefined datatypes
- Posted by ZNorQ Mar 06, 2015
- 1507 views
Hi,
I've created an own data-type called "byte";
type byte( object nByte ) return ( integer( nByte ) and nByte >= 0 and nByte <= 255 ) end type
With this, I was hoping that the following code would "survive" a data-type check;
sequence myType = "somesequenceiwanttocheck" if byte( myType ) then <statements> else <statements> end if
However, it doesn't... Any thoughts?
Kenneth aka ZNorQ