Is there a guide that will help me convert a large code base written with ArcObjects SDK for .NET into ArcGIS Pro SDK? At a minimum, a mapping between an ArcObjects interface and the equivalent ArcGIS Pro class would be very useful. Even better would be some additional detail. Here is an example of a C# code snippet that uses the ArcObjects INetworkClass interface and the IGeometricNetwork interface to determine if a feature class has a geometric network:
bool isInNetwork = false;
INetworkClass networkClass = _featureClass as INetworkClass;
if (!object.Equals(null, networkClass))
{
IGeometricNetwork geometricNetwork = networkClass.GeometricNetwork;
if (!object.Equals(null, geometricNetwork))
{
isInNetwork = true;
}
}
return isInNetwork;
_featureClass is a reference to the IFeatureClass interface.
Any assistance would be greatly appreciated.
Regards,
Jay