QFramework.CSVColItem.CSVColItem C# (CSharp) Method

CSVColItem() public method

public CSVColItem ( string head, BASIC_TYPE type, int itemCount ) : UnityEngine
head string
type BASIC_TYPE
itemCount int
return UnityEngine
		public CSVColItem(string head,BASIC_TYPE type,int itemCount)
		{
			Head = head;
			this.type = type;
			values = new CSVValue[itemCount];
		}