码迷,mamicode.com
首页 > Windows程序 > 详细

C#执行js动态编译的方法

时间:2017-12-14 03:26:24      阅读:243      评论:0      收藏:0      [点我收藏+]

标签:default   webp   教程   read   generic   otto   sts   style   span   

本文实例讲述了C#执行js动态编译的方法。分享给大家供大家参考。具体实现方法如下:


代码如下:

using System;

using System.CodeDom.Compiler;

using System.Collections.Generic;

using System.Linq;

using System.Reflection;

using System.Text;

using System.Threading.Tasks;

namespace webpro

{

public class JScripta

{

private static readonly CodeDomProvider _provider = new Microsoft.JScript.JScriptCodeProvider();

private static Type _evaluateType;

private const string scriptStr = @”package fhs

{

public class MyJs

{

public static function test1(paramr1)

{

var retString  =   paramr1+ ‘是无敌的!’;

return retString;

}

}

}”;

public static object JScriptRun(string jsMethodName,object[] testParams)

{

//编译的参数

CompilerParameters parameters = new CompilerParameters();

parameters.GenerateInMemory = true;

CompilerResults results = _provider.CompileAssemblyFromSource(parameters, scriptStr);

Assembly assembly = results.CompiledAssembly;

//动态编译脚本中的内容

_evaluateType = assembly.GetType(“fhs.MyJs”);

//执行指定的方法并传参数

object retObj = _evaluateType.InvokeMember(jsMethodName, BindingFlags.InvokeMethod,

null, null, testParams);

return retObj;

}

}

}

希望本文所述对大家的C#程序设计有所帮助。

除声明外,跑步客文章均为原创,转载请以链接形式标明本文地址
  C#执行js动态编译的方法

本文地址:  http://www.paobuke.com/develop/c-develop/pbk23186.html






相关内容

C#执行js动态编译的方法

标签:default   webp   教程   read   generic   otto   sts   style   span   

原文地址:http://www.cnblogs.com/paobuke/p/8035369.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!