Выложу тут исходник, который сам писал по объединению двух и более последовательных линий, с возможностью выбора атрибутов для вновь созданной линии (что-то типа UNION) (атрибуты выводятся в win form. Щас нет времени выделять основное, но надеюсь Вы разберетесь). В проге есть еще интересные методы, например если линия состоит из нескольких частей, то все части автоматом стыкуются в одну, или снапинг крайних точек двух линий.
using System;
using System.Collections.Generic;
using System.Data;
using System.Diagnostics;
using System.Drawing;
using System.IO;
using System.Reflection;
using System.Runtime.InteropServices;
using ESRI.ArcGIS.ADF.BaseClasses;
using ESRI.ArcGIS.ADF.CATIDs;
using ESRI.ArcGIS.Carto;
using ESRI.ArcGIS.Controls;
using ESRI.ArcGIS.esriSystem;
using ESRI.ArcGIS.Framework;
using ESRI.ArcGIS.ArcMapUI;
using System.Windows.Forms;
using ESRI.ArcGIS.Geodatabase;
using ESRI.ArcGIS.Geometry;
namespace Union_polyline
{
/// <summary>
/// Summary description for UnionPolylineCommand.
/// </summary>
[Guid("ca795ba1-c0ed-4923-b4af-43672bf13ca1")]
[ClassInterface(ClassInterfaceType.None)]
[ProgId("Union_polyline.UnionPolylineCommand")]
public sealed class UnionPolylineCommand : BaseCommand
{
#region COM Registration Function(s)
[ComRegisterFunction()]
[ComVisible(false)]
static void RegisterFunction(Type registerType)
{
// Required for ArcGIS Component Category Registrar support
ArcGISCategoryRegistration(registerType);
//
// TODO: Add any COM registration code here
//
}
[ComUnregisterFunction()]
[ComVisible(false)]
static void UnregisterFunction(Type registerType)
{
// Required for ArcGIS Component Category Registrar support
ArcGISCategoryUnregistration(registerType);
//
// TODO: Add any COM unregistration code here
//
}
#region ArcGIS Component Category Registrar generated code
/// <summary>
/// Required method for ArcGIS Component Category registration -
/// Do not modify the contents of this method with the code editor.
/// </summary>
private static void ArcGISCategoryRegistration(Type registerType)
{
string regKey = string.Format("HKEY_CLASSES_ROOT\\CLSID\\{{{0}}}", registerType.GUID);
MxCommands.Register(regKey);
}
/// <summary>
/// Required method for ArcGIS Component Category unregistration -
/// Do not modify the contents of this method with the code editor.
/// </summary>
private static void ArcGISCategoryUnregistration(Type registerType)
{
string regKey = string.Format("HKEY_CLASSES_ROOT\\CLSID\\{{{0}}}", registerType.GUID);
MxCommands.Unregister(regKey);
}
#endregion
#endregion
private IApplication m_application;
private double _dTolerance;
private IMap _map;
private HookHelperClass _mHookHelper;
private ISelectionSet _selectionSet;
public Dictionary<int, IFeature> _features;
public IFeature fich;
private string DataSourceType;
List<IPolyline> polylines = new List<IPolyline>();
public UnionPolylineCommand()
{
//
// TODO: Define values for the public properties
//
base.m_category = "Test"; //localizable text
base.m_caption = "Объединение линий"; //localizable text
base.m_message = "Делает объединение выделенных линий"; //localizable text
base.m_toolTip = "Объединение выделенных линий"; //localizable text
base.m_name = "_Union_polyline"; //unique id, non-localizable (e.g. "MyCategory_ArcMapCommand")
try
{
#region Подгрузка картинки на кнопку
Assembly myAssembly = Assembly.GetExecutingAssembly(); // Получаем ссылку на текущую сборку
string[] na