12 lines
345 B
C#
Raw Normal View History

namespace System
{
partial class ThrowHelper
{
internal static void ThrowValueArgumentOutOfRange_NeedNonNegNumException()
{
throw GetArgumentOutOfRangeException(ExceptionArgument.value,
ExceptionResource.ArgumentOutOfRange_NeedNonNegNum);
}
}
}