removeTLK() public static method

public static removeTLK ( int index ) : void
index int
return void
コード例 #1
0
        private void removeTlkButton_Click(object sender, EventArgs e)
        {
            int n = listBox1.SelectedIndex;

            if (n != -1)
            {
                ME3TalkFiles.removeTLK(n);
                refresh();
            }
        }