ประกาศตัวแปรที่เป็น ArrayList ไม่ได้อะครับ
ใช้เนมสเปซ using System.Collections แล้ว Code (C#)
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Collections;
namespace Ex1ArrayList
{
public partial class Ex1ArrayList : Form
{
public Ex1ArrayList()
{
InitializeComponent();
}
public struct MySruct
{
public string Name;
public string Phone;
public string Email;
}
private ArrayListMyRecord = new ArrayList();\\ ติดที่บรรทัดนี้ครับ
}
}