using System;
using System.Data; // ออฟอย่าลืม ref lib นี้ด้วย
public class Program
{
public static void Main()
DataTable dt = new DataTable(); // ทำงานด้วย data table
var v = dt.Compute("3 * (2+4)",""); // สั่ง compute
Console.WriteLine(v); //เช็คค่า
}