通过值传递的参数,仍然在函数内改变?

时间:2016-01-17 12:17:00

标签: c# function parameters

我有一个关于C#中值传递的参数的问题:有一个函数被调用来比较两个复杂的对象" Umfrage"使用内存流,应该从该比较中排除TeamId:

public static bool CompareSurveys(Umfrage obj, Umfrage obj1)
    {
        obj.TeamId = null;
        obj1.TeamId = null;

        using (MemoryStream memStream = new MemoryStream())
        {
            if (obj == null || obj1 == null)
            {
                if (obj == null && obj1 == null)
                    return true;
                else
                    return false;
            }

            BinaryFormatter binaryFormatter = new BinaryFormatter(null, new StreamingContext(StreamingContextStates.Clone));
            binaryFormatter.Serialize(memStream, obj);
            byte[] b1 = memStream.ToArray();
            memStream.SetLength(0);

            binaryFormatter.Serialize(memStream, obj1);
            byte[] b2 = memStream.ToArray();

            if (b1.Length != b2.Length)
                return false;

            for (int i = 0; i < b1.Length; i++)
            {
                if (b1[i] != b2[i])
                    return false;
            }
            return true;
        }
    }

当我调用方法并按值传递参数时,无论如何,TeamId都设置为null。只有值传递时,这怎么可能?

Survey.TeamId = "1";
Debug.WriteLine(Survey.TeamId);
if (ModelValidator.CompareSurveys(@survey, Survey))
{
    return BadRequest("No changes were applied");
}
Debug.WriteLine(Survey.TeamId);

提前致谢:)

1 个答案:

答案 0 :(得分:0)

函数参数是两个对象。

如果在此函数中更改某些对象属性,则会在函数外部更改这些属性。

但如果在你的功能中你做到了 obj = new Umfrage();并且会更改所有属性,但不会在外面更改。