/* Example18_7.cs defines an interface for a simple object */ using System; public interface ISimpleObject { String ToUpper(String inString); }