kevin55

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2013年10月8日

摘要: 1 using System; 2 using System.Threading; 3 4 //多线程调试: 2013.10.08 5 namespace ThreadExample 6 { 7 class App 8 { 9 public struct Data10 {11 public string Message; 12 }13 14 //将消息写入控制台15 static void ThreadMainWithParameter(object o)16 ... 阅读全文
posted @ 2013-10-08 21:52 kernel_main 阅读(458) 评论(0) 推荐(0) 编辑

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication1{ class MathOperations { public static double MultiplyByTwo(double value) { return value * 2; } public static double Square(double value) ... 阅读全文
posted @ 2013-10-08 15:43 kernel_main 阅读(1177) 评论(0) 推荐(0) 编辑