using System.Collections.Generic; namespace IDTF.Net { public class Shader { private List _shaderNameList; public List ShaderNameList { get { if (this._shaderNameList == null) this._shaderNameList = new List(); return this._shaderNameList; } set { this._shaderNameList = value; } } } }