using System; using System.Collections.Generic; using System.Text; namespace InterfaceStudy.Examine { public interface I { void Print(); } }