2016-08-10 6 views
-3

こんにちは誰もがここに誰か私を助けてCS1513のC#の期待団結

はコードでください:私はビジュアルマイクロソフトを使用してい

using UnityEngine; 
using System.Collections; 

public class testScript : MonoBehaviour 
{ 
    int i = 1; 
    // Use this for initialization 
    void Start() 
    { 

     for (i = 1; i > 6; i++) 
     { 

      Debug.Log("value of i = " + i); 

     } 

     Debug.Log("i'm out of the loop"); 

    } //the problem is cs1513 c# expected unity here(21.line) 

    // Update is called once per frame 
    void Update() 
    { 

    } 

プログラムスタジオ

ありがとうございます!!!

答えて

-1

スクリプトの最後には}が不足しています。最後の}はクラス{を閉じる必要があります。これは誤ってあなたによって削除された可能性があります。 Unityがスクリプトの変更を認識しないことがあります。この変更を加えてもこの問題が解決しない場合は、UnityとVisual Studio/MonoDevelopを閉じて再度開いてください。

using UnityEngine; 
using System.Collections; 

public class testScript : MonoBehaviour 
{ 
    int i = 1; 
    // Use this for initialization 
    void Start() 
    { 

     for (i = 1; i > 6; i++) 
     { 

      Debug.Log("value of i = " + i); 

     } 

     Debug.Log("i'm out of the loop"); 

    } //the problem is cs1513 c# expected unity here(21.line) 

    // Update is called once per frame 
    void Update() 
    { 

    } 
}//<====This you missed. 
+0

助けてくれてありがとう! –

関連する問題