You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
720 B
31 lines
720 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Collections;
|
|
|
|
namespace HelloTeamcenter.hello
|
|
{
|
|
class OriginItemType
|
|
{
|
|
private Hashtable itemtypetable = null; //记录Item类型.xml文件的信息 <cad,tc>
|
|
|
|
public Hashtable Itemtypetable
|
|
{
|
|
get { return itemtypetable; }
|
|
set { itemtypetable = value; }
|
|
}
|
|
|
|
public OriginItemType()
|
|
{
|
|
itemtypetable = new Hashtable();
|
|
}
|
|
|
|
public void getType(string xmlpath)
|
|
{
|
|
OriginReadXml originreadxml = new OriginReadXml();
|
|
itemtypetable = originreadxml.OriginReadTypeXML(xmlpath, itemtypetable);
|
|
}
|
|
|
|
}
|
|
}
|