摘要:
upgrade your ini files to xml with .net (cont.)
......
摘要:
as you upgrade your .net applications, upgrade those legacy ini files as well, and save yourself some headaches.
by a. russell jones, executive editor
he ini (application initializati......
XmlConnection
using system;
using system.componentmodel;
using system.data;
using system.xml;
namespace system.data.xmlclient
{
public class xmlconnection : component, idbconnection, icloneable
{
// constructors
public xmlconnection()
{
}
public xmlconnection(string connectionstring)
{
_connstring = connectionstring;
}
////////////////////
// idbconnection
////////////////////
// public properties
public string connectionstring
{
get { return _connstring; }
set { _connstring = value; }
}
&n...
下一页 摘要:
xml 序列化(serialization)
......