コード例 #1
0
ファイル: ErrorUtilities.cs プロジェクト: thomas-dee/vs-yocto
 internal static void VerifyThrowArgumentOutOfRange(bool condition, string parameterName)
 {
     if (condition)
     {
         return;
     }
     ErrorUtilities.ThrowArgumentOutOfRange(parameterName);
 }