1
Answer

Very newbie question...

Boblysan

Boblysan

20y
1.8k
1
Hey gang, I am just starting out with the web service stuff and have a few questions. Does the development machine need to be running IIS when creating web services or can you use a different machine for the web services portion? I know this may sound like a dumb question but when you create the web services project it does allow you to type in a different location for the web address. If you can do this then I need help in figuring out how to create a new project. Everytime I do I get an error that the project cannot be found at the defined location. Again, I know this is very basic stuff but I am stumpted. Thanks, Bob
Answers (1)
0
Vulpes

Vulpes

NA 98.3k 1.5m 12y
Here's another way of doing it:

      int i = 1;
      int j = 2;
      i ^= j;
      j ^= i;
      i ^= j;
      Console.WriteLine("i = {0}, j = {1}", i, j);
0
Suthish Nair

Suthish Nair

NA 31.7k 4.6m 12y

  Something like this, try it..

            int i = 1;
            int j = 2;

            Console.WriteLine("i = " + i);
            Console.WriteLine("j = " + j);

            i = (j + i);
            j = (i - j);
            i = (i - j);

            Console.WriteLine("");
            Console.WriteLine("i = " + i);
            Console.WriteLine("j = " + j);
            Console.ReadKey();