using System; using System.Collections.Generic; using System.Text; namespace COSXML.Log { public interface ILog { void PrintLog(string message); } }