parameter order is changed when use web reference!

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • walter

    parameter order is changed when use web reference!

    Hi there, see if anyone can help on this : I created a simple function in C#
    [WebMethod]
    public void FuncA(int intA, out string strB, ref string strC, out string
    stringD){}

    When I add a web reference , the proxy out ref param in front of our params.

    public void FuncA(int intA, ref string strC, out string strB, out
    string stringD){}

    Any idea ?


Working...