有次可知,你的那个交换的方法并没有真正的交换两个数据.
2.str1 == str2 ,仅仅是比较了值,而非地址(是MS重写了==运算符所致). 作者: 嘴角上揚ぃ读不 时间: 2014-4-23 11:37
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication14
{
class Program
{
public static void aa(string a ,string b)
{
string c;
c = a;
a = b;
b = c;
Console.WriteLine("a={0},b={1}", a, b);