2015-09-26 168 views
0
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(); 

     } 
    } 
} 

的错误:C#语法错误,似乎没有任何错误

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

(为分号后面的那一个) 和

Severity Code Description Project File Line 
Error CS1022 Type or namespace definition, or end-of-file expected SchoolPasswordLockFolder c:\Users\CENSOREDIDONTWANTSTALKERS\documents\visual studio 2015\Projects\App5\SchoolPasswordLockFolder\SchoolPasswordLockFolder\Program.cs 19 

(最后括号) 我没有编程在C#很长一段时间,因为我太忙了web开发和卢阿...

回答

5

更改此:

public string input = Console.ReadLine(); 

到:

string input = Console.ReadLine(); 

局部变量没有得到访问修饰符像public

相关问题