IronRuby.Compiler.Ast.Literal.BigInteger C# (CSharp) Method

BigInteger() public static method

public static BigInteger ( BigInteger value, Microsoft.Scripting.SourceSpan location ) : Literal
value Microsoft.Scripting.Math.BigInteger
location Microsoft.Scripting.SourceSpan
return Literal
        public static Literal/*!*/ BigInteger(BigInteger/*!*/ value, SourceSpan location) {
            return new Literal(value, location);
        }