资源简介
一个用C#编写的HL7消息的类库,可以申请对象调用其中的函数进行HL7消息解析。

代码片段和文件信息
/***************************************************************
* Copyright (C) 2011 Jeremy Reagan All Rights Reserved.
* I may be reached via email at: jeremy.reagan@live.com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; under version 2
* of the License.
*
* This program is distributed in the hope that it will be useful
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
****************************************************************/
using System;
using System.Collections.Generic;
namespace HL7Lib.base
{
///
/// Component Class: Constructs an HL7 Component object
///
public class Component
{
///
/// The Name of the Component
///
public string Name { get; set; }
///
/// The ID of the Component
///
public string ID { get; set; }
///
/// The Value of the Component
///
public string Value { get; set; }
///
/// The ComponentID Parts for the ID: Read Only
///
public ComponentID IDParts
{
get { return ID.ConvertID(); }
}
///
/// Empty Constructor
///
public Component() { }
///
/// Constructs a Component with the specified Name
///
/// The Name of the Component to Construct
public Component(string _Name)
{
Name = _Name;
}
///
/// Constructs a Component with the specified Name and ID
///
/// The Name of the Component to Construct
/// The ID of the Component to Construct
public Component(string _Name string _ID)
{
Name = _Name;
ID = _ID;
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2318 2011-10-03 07:17 HL7Lib\ba
文件 1431 2011-10-03 07:17 HL7Lib\ba
文件 14760 2011-10-03 07:17 HL7Lib\ba
文件 2545 2011-10-03 07:17 HL7Lib\ba
文件 7245 2011-10-03 07:17 HL7Lib\ba
文件 26568 2011-10-03 07:17 HL7Lib\ba
文件 1766 2011-10-03 07:17 HL7Lib\ba
文件 3076 2011-10-03 07:17 HL7Lib\ba
文件 39454 2011-10-03 07:17 HL7Lib\ba
文件 780288 2011-11-21 21:02 HL7Lib\bin\Debug\HL7Lib.dll
文件 1363456 2011-11-21 21:02 HL7Lib\bin\Debug\HL7Lib.pdb
文件 55902 2011-11-21 21:02 HL7Lib\bin\Debug\HL7Lib.xm
文件 744448 2011-11-21 21:23 HL7Lib\bin\Release\HL7Lib.dll
文件 1340928 2011-11-21 21:23 HL7Lib\bin\Release\HL7Lib.pdb
文件 55902 2011-11-21 21:23 HL7Lib\bin\Release\HL7Lib.xm
文件 10539 2011-10-03 07:17 HL7Lib\HL7Lib.csproj
文件 143 2011-10-03 07:17 HL7Lib\HL7Lib.csproj.user
文件 901 2011-11-21 21:02 HL7Lib\HL7Lib.sln
..A..H. 31744 2011-11-21 21:03 HL7Lib\HL7Lib.suo
文件 55902 2011-11-21 21:23 HL7Lib\HL7Lib.xm
文件 5958 2011-11-21 21:02 HL7Lib\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
文件 944 2011-11-21 21:02 HL7Lib\obj\Debug\GenerateResource.read.1.tlog
文件 292 2011-11-21 21:02 HL7Lib\obj\Debug\GenerateResource.write.1.tlog
文件 5328 2011-11-21 21:02 HL7Lib\obj\Debug\HL7Lib.csproj.FileListAbsolute.txt
文件 780288 2011-11-21 21:02 HL7Lib\obj\Debug\HL7Lib.dll
文件 1363456 2011-11-21 21:02 HL7Lib\obj\Debug\HL7Lib.pdb
文件 26377 2011-11-21 21:02 HL7Lib\obj\Debug\HL7Lib.Properties.Resources.resources
文件 4608 2011-10-03 07:17 HL7Lib\obj\Debug\TempPE\Properties.Resources.Designer.cs.dll
文件 5962 2011-11-21 21:23 HL7Lib\obj\Release\DesignTimeResolveAssemblyReferencesInput.cache
文件 4060 2011-11-18 21:32 HL7Lib\obj\Release\GenerateResource.read.1.tlog
............此处省略179个文件信息
- 上一篇:C# OCR数字识别实例,采用TessnetOcr,对数字的识别率100%111309
- 下一篇:没有了
评论
共有 条评论