I need to be able to provide a function for users to explode multi-part polygons in a silverlight application. I am using the Editor class and Geometry services for all of my other functions. I do not see any built-in functions for exploding multi-part features either in the Editor Class, or in the Geometry Service. The only way I can think to do this manually would be to grab the point collections, and check to see if they are clockwise or counter-clockwise so I can tell if the point collections are donuts or multi-part features. Unfortunatelly, I don't see any built-in functions that can tell me the ring orientation. I know that nettopology suites has some libraries, that I could possibly look into.
What is the best way for me to explode a multi-part feature in Silverlight? It sure would be nice if the geometry service or editor class had this functionality built-in.