Rational.Get Method

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Creates a rational number by dividing one big integer by another.

Namespace:  Microsoft.SolverFoundation.Common
Assembly:  Microsoft.Solver.Foundation (in Microsoft.Solver.Foundation.dll)

Syntax

'Declaration
Public Shared Function Get ( _
    bnNum As BigInteger, _
    bnDen As BigInteger _
) As Rational
public static Rational Get(
    BigInteger bnNum,
    BigInteger bnDen
)
public:
static Rational Get(
    BigInteger bnNum, 
    BigInteger bnDen
)
static member Get : 
        bnNum:BigInteger * 
        bnDen:BigInteger -> Rational 
public static function Get(
    bnNum : BigInteger, 
    bnDen : BigInteger
) : Rational

Parameters

Return Value

Type: Microsoft.SolverFoundation.Common.Rational
The result of bnNum being divided by bnDen.

.NET Framework Security

See Also

Reference

Rational Structure

Microsoft.SolverFoundation.Common Namespace