현재 Professional Enterprise .NET 책을 읽고 있는데 일부 예제 프로그램에서이 경고를 발견했습니다.
'NUnit.Framework.Assert.IsInstanceOfType(System.Type, object)' is obsolete
이제 내 질문에 이미 대답했을 수 있지만이 경고를 수정하려면 단순히 Assert.IsInstanceOfType ()을 Assert.IsInstanceOf ()로 바꾸는 경우입니까? 예를 들면 다음과 같습니다.
Assert.IsInstanceOfType(typeof(ClassName), variableName);
다음과 같습니다.
Assert.IsInstanceOf(typeof(ClassName), variableName);