TestApp\Program.cs
// Copyright 2012 ESRI // // All rights reserved under the copyright laws of the United States // and applicable international laws, treaties, and conventions. // // You may freely redistribute and use this sample code, with or // without modification, provided you include the original copyright // notice and use restrictions. // // See the use restrictions. // using System; using System.Collections.Generic; using System.Text; using ESRI.ArcGIS.esriSystem; namespace TestApp { class Program { private static LicenseInitializer m_AOLicenseInitializer = new LicenseInitializer(); [STAThread] static void Main(string[] args) { //ESRI License Initializer generated code. m_AOLicenseInitializer.InitializeApplication(new esriLicenseProductCode[] { esriLicenseProductCode.esriLicenseProductCodeEngine }, new esriLicenseExtensionCode[] { }); Console.WriteLine("Creating container object"); //create a new instance of the test object which will internally clone our clonable object TestClass t = new TestClass(); t.Test(); Console.WriteLine("Done, hit any key to continue."); Console.ReadKey(); //ESRI License Initializer generated code. //Do not make any call to ArcObjects after ShutDownApplication() m_AOLicenseInitializer.ShutdownApplication(); } } }