ArcGIS Pro 2.6 API Reference Guide
Name Property (CoordinateSystemListEntry)
Example 

ArcGIS.Core.Geometry Namespace > CoordinateSystemListEntry Class : Name Property
Gets the name of the coordinate system. When there is more than one category name (or regions), the ordering is hierarchical. In other words, the categories in the list are ordered by area from largest to smallest.
Syntax
public string Name {get;}
Public ReadOnly Property Name As String
Example
// get all the geographic coordinate systems
IReadOnlyList<CoordinateSystemListEntry> gcs_list = GeometryEngine.Instance.GetPredefinedCoordinateSystemList(CoordinateSystemFilter.GeographicCoordinateSystem);

// get the projected coordinate systems
IReadOnlyList<CoordinateSystemListEntry> proj_list = GeometryEngine.Instance.GetPredefinedCoordinateSystemList(CoordinateSystemFilter.ProjectedCoordinateSystem);

// get the vertical coordinate systems
IReadOnlyList<CoordinateSystemListEntry> vert_list = GeometryEngine.Instance.GetPredefinedCoordinateSystemList(CoordinateSystemFilter.VerticalCoordinateSystem);

// get geographic and projected coordinate systems
IReadOnlyList<CoordinateSystemListEntry> combined_list = GeometryEngine.Instance.GetPredefinedCoordinateSystemList(CoordinateSystemFilter.GeographicCoordinateSystem | CoordinateSystemFilter.ProjectedCoordinateSystem);

// investigate one of the entries
CoordinateSystemListEntry entry = gcs_list[0];
int wkid = entry.Wkid;
string category = entry.Category;
string name = entry.Name;
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 7

See Also

Reference

CoordinateSystemListEntry Class
CoordinateSystemListEntry Members