联系人信息管理:解释下面函数中红色语句行A、B的用法: private: System::Void button1_Click(System::Object^ sender,System::EventArgs^ e) { // 删除 if(this->listBox1->SelectedIndex == -1) return; // 未选择联系人 String^ contactName =listBox1->Items[listBox1->SelectedIndex]->ToString();//