ACR_BuilderPlugin.Editors.Converters.SkillTypeConverter.GetStandardValues C# (CSharp) 메소드

GetStandardValues() 공개 메소드

public GetStandardValues ( ITypeDescriptorContext context ) : StandardValuesCollection
context ITypeDescriptorContext
리턴 StandardValuesCollection
        public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context)
        {
            if (SkillList == null)
            {
                ReloadSkillList();
            }
            return new StandardValuesCollection(SkillList);
        }