示例#1
0
	public void stuff2(IAI2 other)
	{
		int x = 7;
		other.val = x;
		val = x;
		x = other.val;
		x = val;
		val = other.val;
	}
示例#2
0
    public void stuff2(IAI2 other)
    {
        int x = 7;

        other.val = x;
        val       = x;
        x         = other.val;
        x         = val;
        val       = other.val;
    }
示例#3
0
 public void stuff(IAI2 other)
 {
     val = other.val;
 }
示例#4
0
文件: test-753.cs 项目: nobled/mono
	public void stuff (IAI2 other)
	{
		val = other.val;
	}