Welcome to Bangladesh Microsoft Technology Community Sign in | Join | Help

Thursday, March 15, 2007 - Posts

WebMethod parameter as ref

I came across WebMethods where parameter is passed as ref. But is this a good practice? //Option1 with ref[WebMethod]public void Transaction2(ref Test test ){}As opposed to writing//Option2[WebMethod]public Test Transaction1(Test test ){}But we should
posted by Shahed | 0 Comments