It seems like there is no means of converting an ArcObjects geometry to the Well-Known Text representation (and vice versa) in ArcGIS ArcObjects API. The only thing I was able to find is conversion to WKB (the IWkb interface).
Is there a way to perform conversion between geometry objects and WKT or do I have to implement it myself? I primarily aim for .NET implementation without much external dependencies.
sridhere. I used this:int srid = feature.Shape.SpatialReference.FactoryCode;Do you agree with that implementation? – elrobis Jul 09 '12 at 17:10