企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
``` using System; [public] interface Person {         // 接口成员     void say(); } class Student: Person {     static void Main()     {         Student st= new Student();         st.say();     }     public void say()     {         Console.WriteLine("say() called.");     } } ```