예제 #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;
	}