<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Demo Station &#187; ASP.NET</title>
	<atom:link href="http://ldf520cxf.chez.com/?cat=23&#038;feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://ldf520cxf.chez.com</link>
	<description>Everything has changed</description>
	<lastBuildDate>Sat, 08 May 2010 17:30:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>-  -！ My Little Island</title>
		<link>http://ldf520cxf.chez.com/?p=81</link>
		<comments>http://ldf520cxf.chez.com/?p=81#comments</comments>
		<pubDate>Sat, 10 Apr 2010 08:55:20 +0000</pubDate>
		<dc:creator>听渢</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[创意想法]]></category>
		<category><![CDATA[DemoStation]]></category>
		<category><![CDATA[Ideas]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=41</guid>
		<description><![CDATA[考虑在Windows 7 上实现一个基于WebBroswer的操作平面,可以很方面的搜索需要的各类型文件，也可以快速启动应用程序。并实现一些日程管理，密码保护功能。
]]></description>
		<wfw:commentRss>http://ldf520cxf.chez.com/?feed=rss2&amp;p=81</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>启动程序集以外其他应用程序</title>
		<link>http://ldf520cxf.chez.com/?p=76</link>
		<comments>http://ldf520cxf.chez.com/?p=76#comments</comments>
		<pubDate>Wed, 31 Mar 2010 09:08:42 +0000</pubDate>
		<dc:creator>听渢</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Windows Mobile]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=20</guid>
		<description><![CDATA[代码内详

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/// &#60;summary&#62;
///开启一个进程
/// &#60;/summary&#62;
/// &#60;param name=&#34;FileName&#34;&#62;文件名(包含路径)&#60;/param&#62;
/// &#60;param name=&#34;ErrorMsgPagePath&#34;&#62;运行参数&#60;/param&#62;
private static void StartProcess&#40;string FileName,string ErrorMsgPagePath&#41;
&#123;
        try
       &#123;
               if &#40;!System.IO.File.Exists&#40;FileName&#41;&#41;
             [...]]]></description>
		<wfw:commentRss>http://ldf520cxf.chez.com/?feed=rss2&amp;p=76</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>泛型与DataTable的互相转化</title>
		<link>http://ldf520cxf.chez.com/?p=73</link>
		<comments>http://ldf520cxf.chez.com/?p=73#comments</comments>
		<pubDate>Tue, 30 Mar 2010 01:37:14 +0000</pubDate>
		<dc:creator>听渢</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[反射]]></category>
		<category><![CDATA[泛型]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=5</guid>
		<description><![CDATA[///DataTable到范型转换
/// &#60;summary&#62;
/// 适合于实体类和DataTable对应的情况
/// &#60;/summary&#62;
//将泛型类转换成DataTable   
public static DataTable ToDataTable&#60;T&#62;(List&#60;T&#62; entitys)
    {        DataTable dtResult = new DataTable();
        if (entitys == null &#124;&#124; entitys.Count &#60; 1)
        {
            throw new Exception(&#8221;需转换的集合为空&#8221;);
        }
        Type entityType = entitys[0].GetType();

        List&#60;PropertyInfo&#62; propertyInfoList = entityType.GetProperties().ToList&#60;PropertyInfo&#62;；();
        foreach (PropertyInfo item in propertyInfoList) 
       {
            dtResult.Columns.Add(new DataColumn(item.Name, item.PropertyType));
        }
        foreach (T entity in entitys)
        {
            DataRow dr = dtResult.NewRow();
            [...]]]></description>
		<wfw:commentRss>http://ldf520cxf.chez.com/?feed=rss2&amp;p=73</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
