<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: ArcObjects SDK To ArcGIS Pro SDK Conversion Guide in ArcGIS Pro SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/arcobjects-sdk-to-arcgis-pro-sdk-conversion-guide/m-p/1050976#M6503</link>
    <description>&lt;P&gt;If you haven't already, I'd take a look at the resources &lt;A href="https://pro.arcgis.com/en/pro-app/latest/sdk/" target="_self"&gt;here&lt;/A&gt;, especially the Concept documents. &amp;nbsp;The APIs are different enough to make it hard to create a direct mapping between them.&lt;/P&gt;&lt;P&gt;For your specific example, Pro does not support&amp;nbsp;geometric networks and there is no equivalent to INetworkClass or IGeometricNetwork.&lt;/P&gt;&lt;P&gt;--Rich&lt;/P&gt;</description>
    <pubDate>Fri, 23 Apr 2021 23:32:31 GMT</pubDate>
    <dc:creator>RichRuh</dc:creator>
    <dc:date>2021-04-23T23:32:31Z</dc:date>
    <item>
      <title>ArcObjects SDK To ArcGIS Pro SDK Conversion Guide</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/arcobjects-sdk-to-arcgis-pro-sdk-conversion-guide/m-p/1050958#M6502</link>
      <description>&lt;P&gt;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:&lt;/P&gt;&lt;P&gt;bool isInNetwork = false;&lt;BR /&gt;INetworkClass networkClass = _featureClass as INetworkClass;&lt;BR /&gt;if (!object.Equals(null, networkClass))&lt;BR /&gt;{&lt;BR /&gt;IGeometricNetwork geometricNetwork = networkClass.GeometricNetwork;&lt;BR /&gt;if (!object.Equals(null, geometricNetwork))&lt;BR /&gt;{&lt;BR /&gt;isInNetwork = true;&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;return isInNetwork;&lt;/P&gt;&lt;P&gt;_featureClass is a reference to the IFeatureClass interface.&lt;/P&gt;&lt;P&gt;Any assistance would be greatly appreciated.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jay&lt;/P&gt;</description>
      <pubDate>Fri, 23 Apr 2021 22:35:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/arcobjects-sdk-to-arcgis-pro-sdk-conversion-guide/m-p/1050958#M6502</guid>
      <dc:creator>JayFlorey</dc:creator>
      <dc:date>2021-04-23T22:35:32Z</dc:date>
    </item>
    <item>
      <title>Re: ArcObjects SDK To ArcGIS Pro SDK Conversion Guide</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/arcobjects-sdk-to-arcgis-pro-sdk-conversion-guide/m-p/1050976#M6503</link>
      <description>&lt;P&gt;If you haven't already, I'd take a look at the resources &lt;A href="https://pro.arcgis.com/en/pro-app/latest/sdk/" target="_self"&gt;here&lt;/A&gt;, especially the Concept documents. &amp;nbsp;The APIs are different enough to make it hard to create a direct mapping between them.&lt;/P&gt;&lt;P&gt;For your specific example, Pro does not support&amp;nbsp;geometric networks and there is no equivalent to INetworkClass or IGeometricNetwork.&lt;/P&gt;&lt;P&gt;--Rich&lt;/P&gt;</description>
      <pubDate>Fri, 23 Apr 2021 23:32:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/arcobjects-sdk-to-arcgis-pro-sdk-conversion-guide/m-p/1050976#M6503</guid>
      <dc:creator>RichRuh</dc:creator>
      <dc:date>2021-04-23T23:32:31Z</dc:date>
    </item>
    <item>
      <title>Re: ArcObjects SDK To ArcGIS Pro SDK Conversion Guide</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/arcobjects-sdk-to-arcgis-pro-sdk-conversion-guide/m-p/1050979#M6504</link>
      <description>&lt;P&gt;Hi Jay, given the many differences between the SDK's we do not maintain a specific document along those lines.&amp;nbsp; With this said, the Pro SDK has a large collection of concept and guide documents that can help you to begin to navigate your way with the Pro SDK patterns and the many Pro APIs.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P data-unlink="true"&gt;The first document I'd suggest you review is the&amp;nbsp;&lt;A href="https://github.com/esri/arcgis-pro-sdk/wiki/ProConcepts-Migrating-to-ArcGIS-Pro" target="_self"&gt;ProConcepts Migrating to ArcGIS Pro&lt;/A&gt;, which includes several resource lists on getting started &lt;A href="https://github.com/esri/arcgis-pro-sdk/wiki/ProConcepts-Migrating-to-ArcGIS-Pro#learning-the-arcgis-pro-sdk" target="_self"&gt;here&lt;/A&gt;.&amp;nbsp; &amp;nbsp;You'll want to review the &lt;A href="https://github.com/esri/arcgis-pro-sdk/wiki/ProConcepts-Framework" target="_self"&gt;ProConcepts Framework&lt;/A&gt; document as&amp;nbsp; well. There are many introductory learning options like the tutorials, and the extensive set of community samples.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P data-unlink="true"&gt;The &lt;A href="https://pro.arcgis.com/en/pro-app/latest/sdk/api-reference/#topic1.html" target="_self"&gt;API Reference&lt;/A&gt; will be helpful in exploring the namespaces and classes, and you'll find many familiar patterns and naming conventions.&lt;/P&gt;&lt;P data-unlink="true"&gt;Towards your specific code snippet, you'll want to start with reviewing the &lt;A href="https://github.com/esri/arcgis-pro-sdk/wiki/ProConcepts-Geodatabase" target="_self"&gt;Geodatabase&lt;/A&gt; and &lt;A href="https://github.com/esri/arcgis-pro-sdk/wiki/ProConcepts-Utility-Network" target="_self"&gt;Utility Network&lt;/A&gt; concepts documents as well, including the snippets and community samples associated with those.&lt;/P&gt;&lt;P data-unlink="true"&gt;You'll find these and the many other API concept documents and other resource documents along the top-right margin on the &lt;A href="https://github.com/esri/arcgis-pro-sdk/wiki" target="_self"&gt;Doc Wiki site&lt;/A&gt;.&amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P data-unlink="true"&gt;You're also sure to find many helpful past threads here in the Pro SDK Questions board by searching the knowledge base by your keywords.&amp;nbsp; Hope this helps you get started some.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Apr 2021 23:39:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/arcobjects-sdk-to-arcgis-pro-sdk-conversion-guide/m-p/1050979#M6504</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-04-23T23:39:53Z</dc:date>
    </item>
  </channel>
</rss>

