摘要:
一:创建和修改一个过程 create or replace procedure xland_proc(v_title in varchar2(222),v_int out number)isv_cha... 阅读全文
摘要:
代码出自《c#3.0设计模式》两个结构的对象 class Element { public Element Next { get; set; } public Element Part { get; set; } public Element() { } public Element(Element next) { Next = next; } } class ElementWithLink : ... 阅读全文