using System; namespace Example46 { /// /// Summary description for Class1. /// class Replace { String myString; public Replace(String s) { myString = s; } /// /// The main entry point for the application. /// [STAThread] static void Main(string[] args) { Console.WriteLine("Enter a String which includes \"fish\": "); Replace phrase = new Replace(Console.ReadLine()); } } }