小编php*_*exe的帖子

线程无法按预期启动

我正在尝试进行测试,看看是否有某些技能.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication2
{
    class timerup
    {
        public bool timeup = false;
    }

    class Program
    {
        public static void timer()
        {
            for (int i = 1; i < 3; i++)
            {
                System.Threading.Thread.Sleep(1000);
                if (i == 5)
                {
                    object a;
                    a = true;
                    a = new timerup();
                    timerup ClassRef;
                    ClassRef = (timerup)a;
                    ClassRef.timeup = true;
                }
            }
        }

        static void Main(string[] args)
        {
            Console.Title = "The Secret Agent Test";
            Console.BackgroundColor = …
Run Code Online (Sandbox Code Playgroud)

c# multithreading console-application

3
推荐指数
2
解决办法
124
查看次数

C#语法错误,似乎没什么错

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.IO;

namespace SchoolPasswordLockFolder
{
    public class Program
    {
        public static void Main(string[] args)
        {
           Console.WriteLine("Enter the password: "); // the space character after the semicolon has an error
            public string input = Console.ReadLine();

        }
    }
}
Run Code Online (Sandbox Code Playgroud)

错误:

Severity    Code    Description Project File    Line
Error   CS1513  } expected  SchoolPasswordLockFolder    c:\Users\CENSOREDSIJGIOFSGJIOFS\documents\visual studio 2015\Projects\App5\SchoolPasswordLockFolder\SchoolPasswordLockFolder\Program.cs 14
Run Code Online (Sandbox Code Playgroud)

(对于分号后的那个)和

Severity    Code    Description Project File    Line
Error   CS1022  Type or namespace definition, or end-of-file expected   SchoolPasswordLockFolder …
Run Code Online (Sandbox Code Playgroud)

c# syntax-error

0
推荐指数
1
解决办法
289
查看次数