{"id":265,"date":"2022-06-25T16:09:54","date_gmt":"2022-06-25T08:09:54","guid":{"rendered":"https:\/\/www.fengjijiao.cn\/?p=265"},"modified":"2022-06-29T14:44:58","modified_gmt":"2022-06-29T06:44:58","slug":"csharp%e6%8e%a5%e5%8f%a3","status":"publish","type":"post","link":"https:\/\/www.fengjijiao.cn\/?p=265","title":{"rendered":"C#\u63a5\u53e3"},"content":{"rendered":"\n<pre class=\"wp-block-code\"><code>using System;\r\n\r\nnamespace ConsoleApp1\r\n{\r\n    interface IMyInterface\r\n    {\r\n        void MethodToImplement();\r\n    }\r\n    class InterfaceImpl: IMyInterface\r\n    {\r\n        public void MethodToImplement()\r\n        {\r\n            Console.WriteLine(\"MethodToImplement() called.\");\r\n        }\r\n    }\r\n    interface IParentInterface2\r\n    {\r\n        void ParentInterfaceMethod();\r\n    }\r\n    interface IMyInterface2: IParentInterface2\r\n    {\r\n        void MethodToImpl();\r\n    }\r\n    class InterfaceImpl2 : IMyInterface2\r\n    {\r\n        public void ParentInterfaceMethod()\r\n        {\r\n            Console.WriteLine(\"ParentInterfaceMethod() called.\");\r\n        }\r\n        public void MethodToImpl()\r\n        {\r\n            Console.WriteLine(\"MethodToImpl() called.\");\r\n        }\r\n    }\r\n    class Program\r\n    {\r\n         static void Main(string&#91;] args)\r\n         {\r\n            \/\/\u63a5\u53e3\r\n            InterfaceImpl i = new InterfaceImpl();\r\n            i.MethodToImplement();\r\n\r\n            InterfaceImpl2 i2 = new InterfaceImpl2();\r\n            i2.MethodToImpl();\r\n            i2.ParentInterfaceMethod();\r\n\r\n            Console.ReadKey();\r\n         }\r\n    }\r\n    \r\n}\r\n<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[19],"tags":[],"_links":{"self":[{"href":"https:\/\/www.fengjijiao.cn\/index.php?rest_route=\/wp\/v2\/posts\/265"}],"collection":[{"href":"https:\/\/www.fengjijiao.cn\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.fengjijiao.cn\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.fengjijiao.cn\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.fengjijiao.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=265"}],"version-history":[{"count":1,"href":"https:\/\/www.fengjijiao.cn\/index.php?rest_route=\/wp\/v2\/posts\/265\/revisions"}],"predecessor-version":[{"id":266,"href":"https:\/\/www.fengjijiao.cn\/index.php?rest_route=\/wp\/v2\/posts\/265\/revisions\/266"}],"wp:attachment":[{"href":"https:\/\/www.fengjijiao.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=265"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.fengjijiao.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=265"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.fengjijiao.cn\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=265"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}