using System;
using System.Collections;
using System.ComponentModel;
using System.CodeDom;
using System.CodeDom.Compiler;
using Microsoft.JScript;
using System.Reflection;
//创建实现js中eval方法的类
public class EvalMethod
{ //初始化加载程序的字符串; public static readonly String _jsClass = @"class theEval{ public function eval_r(str:String):String {return eval_r(str)}}"; //定义对象 public static object _evalObject=null; public static Type _evalType =null;