longestMatch() public method

public longestMatch ( string sequence1, string sequence2 ) : int
sequence1 string
sequence2 string
return int
コード例 #1
0
        static void Main(string[] args)
        {
            DNASingleMatcher x = new DNASingleMatcher();

            Console.WriteLine(x.longestMatch("A", "A"));
            Console.ReadLine();
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: Oscarbralo/TopBlogCoder
 static void Main(string[] args)
 {
     DNASingleMatcher x = new DNASingleMatcher();
     Console.WriteLine(x.longestMatch("A", "A"));
     Console.ReadLine();
 }