Org.IdentityConnectors.Framework.Common.Objects.BigInteger.BigInteger C# (CSharp) Method

BigInteger() public method

public BigInteger ( string val ) : System
val string
return System
        public BigInteger(string val)
        {
            if (val == null)
            {
                throw new ArgumentNullException();
            }
            _value = val;
        }