ArcGISCompare.GeoDbProcs.ConvertGeometryType C# (CSharp) Method

ConvertGeometryType() static private method

static private ConvertGeometryType ( esriGeometryType theT ) : string
theT esriGeometryType
return string
    internal static string ConvertGeometryType(esriGeometryType theT)
    {
      if (theT == esriGeometryType.esriGeometryPoint) { return "Point"; }
      if (theT == esriGeometryType.esriGeometryPolygon) { return "Polygon"; }
      if (theT == esriGeometryType.esriGeometryPolyline) { return "Polyline"; }
      return "None";
    }