2015-09-26 174 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

相關問題