ArcGIS Pro 2.6 API Reference Guide
GetInverse Method (GeographicTransformation)
Example 

ArcGIS.Core.Geometry Namespace > GeographicTransformation Class : GetInverse Method
Creates an inverse of this transformation. After the call the IsForward property is inverted.
Syntax
public override DatumTransformation GetInverse()
Public Overrides NotOverridable Function GetInverse() As DatumTransformation
Example
// create from wkid
GeographicTransformation gt1478 = ArcGIS.Core.Geometry.GeographicTransformation.Create(1478);
string name = gt1478.Name;
string wkt = gt1478.Wkt;
int wkid = gt1478.Wkid;

// create from wkt
GeographicTransformation another_gt1478 = ArcGIS.Core.Geometry.GeographicTransformation.Create(wkt);

// inverse
GeographicTransformation inverse_gt148 = another_gt1478.GetInverse() as GeographicTransformation;
bool isForward = inverse_gt148.IsForward;
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 7

See Also

Reference

GeographicTransformation Class
GeographicTransformation Members