Hi guys,
you know if there's some problem passing a not sequential enum via web services?
I noticed that a
public enum myenum {
firstelement=1,
secondelement=10,
finalelement=15
end enum
become in the reference on the client
public enum myenum {
firstelement,
secondelement,
finalelement
end enum
That is wrong cause if I pass myenum.secondelement I receive an error saying that "10 is not a valid element for myenum"
Stevie B. Gibson
you know if there's some problem passing a not sequential enum via web services?
I noticed that a
public enum myenum {
firstelement=1,
secondelement=10,
finalelement=15
end enum
become in the reference on the client
public enum myenum {
firstelement,
secondelement,
finalelement
end enum
That is wrong cause if I pass myenum.secondelement I receive an error saying that "10 is not a valid element for myenum"
Stevie B. Gibson