c# python 脚本语言,cs-script: 用C#语言去做脚本语言,速度甩Python N条街!而且可以使用.NET全部类库,支持MONO!强烈适合患有“强迫症”的程序猿使用。不像PYthon...

CS-Script

css_logo_codeplex_256x256_2.png

cs-script.svg?style=flat-squarecs-script.svg?style=flat-squareCS-Script.svg?style=flat-square

f1ba5b78f44b577cfee6d122331bf3c2.png

The project has been migrated to GitHub from CodePlex: CS-Script.

CS-Script is a CLR (Common Language Runtime) based scripting system which uses ECMA-compliant C# as a programming language.

CS-Script is one of the most mature C# scripting solutions. It became publicly available in 2004, two years after the first release of .NET.

CS-Script supports both hosted and standalone execution model. It allows seamlessly switching underlying compiling technology without affecting the code base. Currently supported compilers are Mono, Roslyn and CodeDOM. It offers comprehensive integration with most common development tools:

Visual Studio,

VSCode,

Sublime Text 3,

Notepad++.

It can be run on Win, Linux and Mac. And it is compatible with .NET, Mono and .NET Core (ongoing development).

Over the long history of CS-Script it has been downloaded through Notepad++ plugin manager alone over

css.npp.count.jpeg times.

For the all CS-Script details go to the project Documentation Wiki.

The following is a simple code sample just to give you the idea about the product:

Executing script from shell

Updating media file tags.

Note, the script is using optional classless layout.

Script file: mp4_retag.cs

//css_nuget taglib

using System;

using System.IO;

string source = @"\\media-server\tv_shows\Get Smart\Season1";

void main()

{

foreach (string file in Directory.GetFiles(source, "*.mp4"))

{

string episode_name = Path.GetFileNameWithoutExtension(file);

var mp4 = TagLib.File.Create(file);

mp4.Tag.Title = episode_name;

mp4.Save();

Console.WriteLine(episode_name);

}

}

Execute script file directly in cmd-promt without building an executable assembly:

C:\Temp>cscs mp4_retag.cs

Hosting script engine

dynamic script = CSScript.LoadCode(

@"using System.Windows.Forms;

public class Script

{

public void SayHello(string greeting)

{

MessageBox.Show($""Greeting: {greeting}"");

}

}")

.CreateObject("*");

script.SayHello("Hello World!");

//-----------------

var product = CSScript.CreateFunc(@"int Product(int a, int b)

{

return a * b;

}");

int result = product(3, 4);

//-----------------

var SayHello = CSScript.LoadMethod(

@"using System.Windows.Forms;

public static void SayHello(string greeting)

{

MessageBoxSayHello(greeting);

ConsoleSayHello(greeting);

}

static void MessageBoxSayHello(string greeting)

{

MessageBox.Show(greeting);

}

static void ConsoleSayHello(string greeting)

{

Console.WriteLine(greeting);

}")

.GetStaticMethod("SayHello" , typeof(string));

SayHello("Hello again!");

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值