mokaisong 发表于 2016-12-23 16:32:34

祝资源共享吧越来越火!

ligang0501 发表于 2017-2-25 09:35:27

件编程基础入门 C#

ximorujin 发表于 2017-2-25 11:14:48

感谢分享

szmy 发表于 2017-2-25 11:29:18

学习下——

进击吧程序员 发表于 2017-2-25 17:34:04

感谢分享!

xinyang 发表于 2017-2-26 17:25:19

6666666666666666666666666

joseph 发表于 2017-3-13 13:25:33

支持支持支持支持

joseph 发表于 2017-3-13 15:05:43

123123123

本帖最后由 joseph 于 2017-3-13 15:10 编辑

123123123123123

xuyun5566 发表于 2017-3-24 10:46:21

谢谢分享

845522619 发表于 2017-3-28 23:42:34

Using System;
usingSystem.Threading;
public class SimpleThread
{
   public void Method()
   {
          int i = 1,j = 2;
          int result = i + j ;
          Console.WriteLine("thread{0} Value{1}",
          AppDomain.GetCurrentThreadId().ToString,
          result.ToString());
   }
   static void Main()
   {
          SimpleThread thread1 = new SimpleThread();
          thread1.Method();
          ThreadStart ts = new ThreadStart(thread1.Method);
          Thread t = new Thread(ts);
          t.Start();
          Console.ReadLine();
      }
}Using System;
usingSystem.Threading;
public class SimpleThread
{
   public void Method()
   {
          int i = 1,j = 2;
          int result = i + j ;
          Console.WriteLine("thread{0} Value{1}",
          AppDomain.GetCurrentThreadId().ToString,
          result.ToString());
   }
   static void Main()
   {
          SimpleThread thread1 = new SimpleThread();
          thread1.Method();
          ThreadStart ts = new ThreadStart(thread1.Method);
          Thread t = new Thread(ts);
          t.Start();
          Console.ReadLine();
      }
}Using System;
usingSystem.Threading;
public class SimpleThread
{
   public void Method()
   {
          int i = 1,j = 2;
          int result = i + j ;
          Console.WriteLine("thread{0} Value{1}",
          AppDomain.GetCurrentThreadId().ToString,
          result.ToString());
   }
   static void Main()
   {
          SimpleThread thread1 = new SimpleThread();
          thread1.Method();
          ThreadStart ts = new ThreadStart(thread1.Method);
          Thread t = new Thread(ts);
          t.Start();
          Console.ReadLine();
      }
}
页: 1 2 3 4 5 6 7 [8] 9 10 11 12 13 14 15 16 17
查看完整版本: C#视频教程软件编程基础入门 C#面向对象程序设计-资源共享吧收集