top of page

数字から文字へ型変換

    public int TEST;

    // Update is called once per frame
    void Update () {
        //数字から文字へ型変換
        string text1 = (TEST).ToString();    
    }

 

bottom of page