PEAPI.ClassDef.AddField C# (CSharp) Méthode

AddField() public méthode

Add a field to this class
public AddField ( FieldAttr fAtts, string name, Type fType ) : FieldDef
fAtts FieldAttr attributes for this field
name string field name
fType Type field type
Résultat FieldDef
		public FieldDef AddField(FieldAttr fAtts, string name, Type fType) 
		{
			FieldDef field = new FieldDef(fAtts,name,fType);
			fields.Add(field);
			return field;
		}

Same methods

ClassDef::AddField ( string name, Type fType ) : FieldDef