예제 #1
0
파일: ECDsaXml.cs 프로젝트: z77ma/runtime
 public static void TestNotImplementedException()
 {
     using (ECDsa ec = ECDsaFactory.Create())
     {
         Assert.Throws <NotImplementedException>(() => ec.FromXmlString(null));
         Assert.Throws <NotImplementedException>(() => ec.ToXmlString(true));
     }
 }