diff --git a/xml/System.Numerics/BigInteger.xml b/xml/System.Numerics/BigInteger.xml index f591ae8f700..d9a43bff54c 100644 --- a/xml/System.Numerics/BigInteger.xml +++ b/xml/System.Numerics/BigInteger.xml @@ -3554,7 +3554,7 @@ value Mod 2 = 0 ## Remarks The overloads of the method define the types to which or from which a object can be converted. Language compilers do not perform this conversion automatically because it can involve data loss. Instead, they perform the conversion only if a casting operator (in C#) or a conversion function (such as `CType` or `CInt` in Visual Basic) is used. Otherwise, they display a compiler error. - Because this operation defines a narrowing conversion, it can throw an at run time if the value is outside the range of the data type. There is no loss of precision in the resulting value if the conversion is successful. + Because this operation defines a narrowing conversion, it can throw an at run time if the value is outside the range of the data type. There is no loss of precision in the resulting value if the conversion is successful. ## Examples The following example illustrates the conversion of to values. It also handles an that is thrown because the value is outside the range of the data type.