VAGSuite.TransactionCollection.Contains C# (CSharp) Method

Contains() public method

public Contains ( TransactionEntry value ) : bool
value TransactionEntry
return bool
        public bool Contains(TransactionEntry value)
        {
            // If value is not of type Int16, this will return false.
            return (List.Contains(value));
        }