Hi,
I am working on porting old applications from ArcObjects to the new ArcGIS Pro SDK and have a significant question. I've looked through the questions and the examples, but I am stumped on this one.
How can I create a field in a Table?
in a Standalone Table?
in a Feature Layer?
in a Feature Class?
In ArcObjects this was quite easy as you could do
IField field = new Field();
IFieldEdit fieldEdit = (IFieldEdit)field;
fieldEdit.Name_2 = fieldName;
fieldEdit.Type_2 = fieldType;
featureClass.AddField(field);
now I must use ExecuteToolAsync?
How can I use this, is there a good example of someone adding a field?
Thanks,
James