| DnaAlphabetTryGetAmbiguousSymbol Method  | 
                Get the ambiguous symbols if present in the alphabet.
            
 
Namespace: BioAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntaxpublic bool TryGetAmbiguousSymbol(
	HashSet<byte> symbols,
	out byte ambiguousSymbol
)
Public Function TryGetAmbiguousSymbol ( 
	symbols As HashSet(Of Byte),
	<OutAttribute> ByRef ambiguousSymbol As Byte
) As Boolean
public:
virtual bool TryGetAmbiguousSymbol(
	HashSet<unsigned char>^ symbols, 
	[OutAttribute] unsigned char% ambiguousSymbol
) sealed
abstract TryGetAmbiguousSymbol : 
        symbols : HashSet<byte> * 
        ambiguousSymbol : byte byref -> bool 
override TryGetAmbiguousSymbol : 
        symbols : HashSet<byte> * 
        ambiguousSymbol : byte byref -> bool Parameters
- symbols
 - Type: System.Collections.GenericHashSetByte
The symbols. - ambiguousSymbol
 - Type: SystemByte
Ambiguous Symbol.  
Return Value
Type: 
BooleanTrue if gets else false.
Implements
IAlphabetTryGetAmbiguousSymbol(HashSetByte, Byte)
See Also