Jump to content

[C#] استفسار


Recommended Posts

مثال مطبق علي مشروع من نوع كونسل

:P

using System;
using System.Threading;

namespace Test
{
	class MainClass
	{
		public static void Main(string[] args)
		{
			for (int Index = 0; Index <= 100000; Index++)
			{
				Console.WriteLine(Index);
				Thread.Sleep(1000); // نوقف تنفيذ الثريد الحالي فترة مقدارها ثانية قبل الانتقال للدورة الاخرى من الحلقة
			}
			Console.ReadKey();
		}
	}
}

بلتوفيق

Edited by #DABL
  • Thanks 2
Link to comment
16 minutes ago, #DABL said:

مثال مطبق علي مشروع من نوع كونسل

:P


using System;
using System.Threading;

namespace Test
{
	class MainClass
	{
		public static void Main(string[] args)
		{
			for (int Index = 0; Index <= 100000; Index++)
			{
				Console.WriteLine(Index);
				Thread.Sleep(1000); // نوقف تنفيذ الثريد الحالي فترة مقدارها ثانية قبل الانتقال للدورة الاخرى من الحلقة
			}
			Console.ReadKey();
		}
	}
}

بلتوفيق

تمام الله يعطيك العافية

الحين كيف احط رابط موقع ؟

 

Link to comment
  • 2 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...