c# 动态编译代码 执行脚本代码 关键字还会变色

时间:2016-12-09 08:59:10
【文件属性】:

文件名称:c# 动态编译代码 执行脚本代码 关键字还会变色

文件大小:70KB

文件格式:ZIP

更新时间:2016-12-09 08:59:10

c# 动态编译 执行脚本 调式代码 关键字变色

c# 动态编译代码 执行脚本代码 关键字还会变色 // debug it step by step (F10, F11) using System; // for Console.WriteLine using System.Windows.Forms; // for MessageBox.Show, ... using System.Diagnostics; // for Debug.WriteLine using System.Collections.Generic; // for List // we can call static functions MessageBox.Show("Hello World!"); // output to DevStudio Output Console.WriteLine("Hello World!"); // same output over Debug Debug.WriteLine("Hello World!"); // we can define global var's var anystr = "Hello World {0} {1}"; int anynuber = 1; float anyfloat = 3.14f; // and we can use it Console.WriteLine(string.Format(anystr, anynuber, anyfloat)); // we can write functions string test1(int i, string s) { return s + " " + i; } double test2(double x) { double t = Math.Sin(x); // with local vars of course return t * t; }


【文件预览】:
CSSDemo
----bin()
--------Debug()
----Program.cs(11KB)
----CSSDemo.sln(903B)
----EditCtrl.cs(23KB)
----CSSDemo.csproj(4KB)
----CSSDemo.suo(21KB)
----Demos()
--------Test1.csss(2KB)
--------Test2.csss(288B)
----Script.cs(77KB)
----Properties()
--------Resources.resx(5KB)
--------Settings.settings(249B)
--------AssemblyInfo.cs(511B)
--------Settings.Designer.cs(1KB)
--------Resources.Designer.cs(3KB)

网友评论