public Test.ByteS opByteS(Test.ByteS p1, Test.ByteS p2, out Test.ByteS p3, Ice.Current current) { p3 = new Test.ByteS(); for (int i = 0; i < p1.Count; i++) { p3.Add(p1[p1.Count - (i + 1)]); } Test.ByteS r = new Test.ByteS(p1.ToArray()); r.AddRange(p2); return(r); }
public void opByteS_async(Test.AMD_MyClass_opByteS cb, Test.ByteS p1, Test.ByteS p2, Ice.Current current) { Test.ByteS p3 = new Test.ByteS(); for (int i = 0; i < p1.Count; i++) { p3.Add(p1[p1.Count - (i + 1)]); } Test.ByteS r = new Test.ByteS(); r.AddRange(p1); r.AddRange(p2); cb.ice_response(r, p3); }
public override Test.ByteS opByteS(Test.ByteS p1, Test.ByteS p2, out Test.ByteS p3, Ice.Current current) { p3 = new Test.ByteS(); for(int i = 0; i < p1.Count; i++) { p3.Add(p1[p1.Count - (i + 1)]); } Test.ByteS r = new Test.ByteS(p1.ToArray()); r.AddRange(p2); return r; }
public void opByteS_async(Test.AMD_MyClass_opByteS cb, Test.ByteS p1, Test.ByteS p2, Ice.Current current) { Test.ByteS p3 = new Test.ByteS(); for(int i = 0; i < p1.Count; i++) { p3.Add(p1[p1.Count - (i + 1)]); } Test.ByteS r = new Test.ByteS(); r.AddRange(p1); r.AddRange(p2); cb.ice_response(r, p3); }