摘要: js文件Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->1//JScript文件2functionGetXmlRequest()3{4varxmlHttp;5try6{7xmlHttp=newXMLHttpRequest();8}9catch(e)10...阅读全文
公告 |
08 2007 档案摘要: js文件Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->1//JScript文件2functionGetXmlRequest()3{4varxmlHttp;5try6{7xmlHttp=newXMLHttpRequest();8}9catch(e)10...阅读全文
摘要: public class GenericList<T>{ private class Node { // T used in non-generic constructor public Node(T t) { next = null; data = t; } private Node next; public Node Next { get { return next; } set ...阅读全文
|