QuickFix.DataDictionary.DDField.DDField C# (CSharp) 메소드

DDField() 공개 메소드

public DDField ( int tag, String name, HashSet enums, String fixFldType ) : System
tag int
name String
enums HashSet
fixFldType String
리턴 System
        public DDField(int tag, String name, HashSet<String> enums, String fixFldType)
        {
            this.Tag = tag;
            this.Name = name;
            this.Enums = enums;
            this.FixFldType = fixFldType;
            this.FieldType = FieldTypeFromFix(this.FixFldType);
        }