Programming/C#
Debug.Assert and Debug.Fail
역시인생한방
2015. 12. 24. 12:11
Debug.Assert(bool condition)
{
if (condition == false)
Debug.Fail();
}
위와 같단다