2016年6月7日 星期二

C#的Structure

在Unity內、使用C#時,創造並使用Structure的方式:
using UnityEngine;
using System.Collections;

public class MainProcess : MonoBehaviour {

    private struct tempStructure
    {
        public int tempIndex;
        public string tempName;
    }

    void Start ()
    {
        tempStructure xxx = new tempStructure();

        xxx.tempIndex = 1;
        xxx.tempName = "Name";

        Debug.log( xxx.tempIndex  );
        Debug.log( xxx.tempName );
    }
}

沒有留言:

張貼留言