Hi All,
afaict slice2cs 3.4 has a bug in the generation of tie classes. They look like the following and don't compile because the using statement in red prevents the compiler from resolving the Obsolete attribute in blue.
If I understand the problem, the line in blue should be:Code:using _System = global::System; using _Microsoft = global::Microsoft; namespace MyModule { ... public class IMyInterfaceTie_ : IMyInterfaceDisp_, Ice.TieBase { ... [Obsolete("This method is deprecated, use GetHashCode instead.")] public override int ice_hash() { return GetHashCode(); } ... } ... }
ZeroC, when do you think a fix will be made available? (if you agree the problem is there, of course :-) )Code:[_System.Obsolete("This method is deprecated, use GetHashCode instead.")]
Thank you

Reply With Quote