-
值类型引用 值类型和引用类的区别是什么?
引用类型 值类型 区别 因为是值类型,里面交换不会影响外面的值。你需要改成 ref 参数:using System;class aa{public static void Main(){int my=10;int you=20;swap(r...
引用类型 值类型 区别 因为是值类型,里面交换不会影响外面的值。你需要改成 ref 参数:using System;class aa{public static void Main(){int my=10;int you=20;swap(r...