Suma de matrices usando 2 listbox visual studio.net C#
Buenas tengo 2 listbox en cada listbox me ingresa una matriz osea son 2 matrices como puedo sumar estas 2 matrices y presentarla en un tercer lisbox..... Es en visual studio.net c#
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        ArrayList vector01;
        ArrayList vector02;
        ArrayList vector03;
        int a;
            int b;
            int c;
            int d;
        public Form1()
        {
            InitializeComponent();
            vector01 = new ArrayList();
            vector02 = new ArrayList();
            vector03 = new ArrayList();
        }
        private void button1_Click(object sender, EventArgs e)
        {    //ingreso datos a la matriz 1      
           vector01.Add(textBox1.Text.ToString());
        }
        private void button2_Click(object sender, EventArgs e)
        {
            // presento los datos de la matriz 01 en un listbox 1
            for (a = 0; a < vector01 .Count ; a++)
            {
                listBox1.Items.Add(vector01[a]);
            }
            textBox1.Text = " ";
        }
        private void button4_Click(object sender, EventArgs e)
        {   //ingreso matriz 02
            vector02.Add(textBox2.Text.ToString());
        }
        private void button3_Click(object sender, EventArgs e)
        {
            //presento matriz 02 en listbox 2
            for (b = 0; b <vector02 .Count ; b ++)
            {
                listBox2.Items.Add(vector02[b]);
            }
            textBox1.Text = " ";
        }
        private void button5_Click(object sender, EventArgs e)
        {
         // aqui deberia sumar las 2 matriz y presentar en listbox 3
        }
seria de mucha ayuda, gracias por anticipado .-.



