コード例 #1
0
ファイル: Class1.cs プロジェクト: mharpaz18/HelloWorldApp
        public void PrintHelloWorldPlain()
        {
            string text = getTextClass.GetHelloWorldPlain(); // get the text from the concrete impl. of text getter

            WriteToDB(text);                                 //write the text out to the db
        }
コード例 #2
0
ファイル: Class1.cs プロジェクト: mharpaz18/HelloWorldApp
        public void PrintHelloWorldPlain()
        {
            string text = getTextClass.GetHelloWorldPlain();   // get the text from the concrete impl. of text getter

            Console.WriteLine(text);                           //print out to console
        }