Assert.AreNotEqual과 Assert.AreNotSame의 차이점은 무엇입니까? C #에서 차이점은 무엇입니까 Assert.AreNotEqual 과 Assert.AreNotSame 여기에 제공된 거의 모든 답변이 정확하지만 예를 들어 볼 가치가 있습니다. public static string GetSecondWord(string text) { // Yes, an appalling implementation... return text.Split(' ')[1]; } string expected = "world"; string actual = GetSecondWord("hello world"); // Good: the two strings should be *equal* as they have th..