可以利用 struct 來封裝相關變數的小群組
e.g. :
public class test
{
void Start ()
{
structTest test = new structTest ();
test.structName = "struct name ";
}
}
public struct structTest
{
public string structName;
}
沒有留言:
張貼留言