CSVRowItem.CSVRowItem C# (CSharp) 메소드

CSVRowItem() 공개 메소드

public CSVRowItem ( CSVValue, values, int>.Dictionary indexForAttribName ) : UnityEngine
values CSVValue,
indexForAttribName int>.Dictionary
리턴 UnityEngine
	public CSVRowItem(CSVValue[] values,Dictionary<string,int> indexForAttribName)
	{
		IndexForAttribName = indexForAttribName;
		Values = values;
//		for (int i = 0;i <values.Length;i++) {
//			QPrint.Warn (values [i]);
//
//		}
	}
CSVRowItem