form1.cs

来自「LCS Algorithm以c#來實作」· CS 代码 · 共 28 行

CS
28
字号
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace WindowsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            int m, n;
            int length = 0;
            string x = null;
            m = textBox1.TextLength;
            n = textBox2.TextLength;

            int[,] c = new int[m + 1, n + 1];
            string[,] b = new string[m + 1, n + 1];
            //

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?