Segmenter.Base.Sequences.ComplexChain.ClearAt C# (CSharp) Method

ClearAt() public method

The clear at.
public ClearAt ( int index ) : void
index int /// The index. ///
return void
        public void ClearAt(int index)
        {
            try
            {
                DeleteAt(index);
            }
            catch (Exception)
            {
            }
        }

Usage Example

 public void ClearAtTest()
 {
     var secondComplexChain = new ComplexChain("AGTC");
     var firstComplexChain = new ComplexChain("ATC");
     secondComplexChain.ClearAt(1);
     Assert.True(firstComplexChain.Equals(secondComplexChain));
 }
All Usage Examples Of Segmenter.Base.Sequences.ComplexChain::ClearAt