<?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>Yes EVE, this is Eden</title>
	<atom:link href="http://yeseve.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://yeseve.com</link>
	<description>My life, my world</description>
	<lastBuildDate>Thu, 08 Mar 2012 22:10:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>美国宾夕法尼亚 匹兹堡刚才发生枪击案，据说2死5伤</title>
		<link>http://yeseve.com/?p=380</link>
		<comments>http://yeseve.com/?p=380#comments</comments>
		<pubDate>Thu, 08 Mar 2012 22:10:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://yeseve.com/?p=380</guid>
		<description><![CDATA[刚才听美国同学说，宾夕法尼亚 匹兹堡刚才发生枪击案，据说2死5伤，离他只有2个街区。09年就发生过一次四死10伤的枪击案，不知道这次是什么原因。]]></description>
		<wfw:commentRss>http://yeseve.com/?feed=rss2&#038;p=380</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET MVC 3和Razor中的@helper 语法</title>
		<link>http://yeseve.com/?p=377</link>
		<comments>http://yeseve.com/?p=377#comments</comments>
		<pubDate>Sat, 13 Aug 2011 00:47:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MVC]]></category>
		<category><![CDATA[helper]]></category>
		<category><![CDATA[Razor]]></category>

		<guid isPermaLink="false">http://yeseve.com/?p=377</guid>
		<description><![CDATA[ASP.NET MVC 3支持一项名为“Razor”的新视图引擎选项（除了继续支持/加强现有的.aspx视图引擎外）。当编写一个视图模板时，Razor将所需的字符和击键数减少到最小，并保证一个快速、通畅的编码工作流。 与大部分模板的语法不同，在Razor的帮助下，您不需要中断代码编写，仅仅为了在HTML中标注服务器端代码块的开始和结束。代码分析器足够聪明，它能够从你的代码里推断出是否为服务器端代码。这种更加简洁、富有表现力的语法更加干净，输入也更快速，有趣。 今天的博文涵盖了Razor的一项很多人都不知道的功能——利用@helper语法定义可重用的帮助器方法。 简单的 @helper 方法应用场景 Razor中的@helper语法让您能够轻松创建可重用的帮助器方法，此方法可以在您的视图模板中封装输出功能。他们使代码能更好地重用，也使代码更具有可读性。让我们看一个超级简单的应用场景，它展示了@helper语法是怎样被使用的。 在我们定义@helper方法之前的代码 让我们看一个简单的产品列表应用场景。在此场景中，我们列出产品明细并输出产品的价格或是单词“免费！”——如果这个产品不花费任何成本的话： 以上代码非常直截了当，而且Razor的语法使得在HTML里能简单地集成服务器端C#代码。 然而，一个有点混乱的地方是价格的if/else逻辑。我们可能在站点的其他位置输出价格（或者在同一页面上），而复制以上逻辑很容易出错且难以维护。类似的应用场景是使用@helper语法提取和重构成为帮助器方法的首选考虑。 使用@helper语法重构以上样例 让我们提取价格输出逻辑，并将其封装在一个我们将命名为“DisplayPrice”的帮助器方法内。我们可以通过重写以下代码样例来实现此操作： 我们已经使用上述@helper语法来定义名为“DisplayPrice”的可重用帮助器方法。就像标准C#/VB方法一样，它可以包含任意数量的参数（您也可以定义参数为空或可选参数）。不过，与标准C#/VB方法不同的是，@helper方法可以同时包含内容和代码并支持其中的完整Razor语法——这使得定义和封装呈现/格式化帮助器方法变得非常简单。 您可以像调用一个标准的C#或VB方法一样，调用@helper方法： 当调用该方法时，Visual Studio会提供智能感知代码： 在多视图模式中重用@helper 在上面的实例中，我们在相同的视图模板中将@helper方法定义为调用它的代码。或者，我们可以将@helper方法定义在视图模板外，并保证其在项目的所有视图模板中可重复使用。 您可以在.cshtml/.vbhtml保存我们的@helper方法，并把这个文件放在项目根目录下创建的\App_Code目录下例如，我在\App_Code文件夹中创建了一个“ScottGu.cshtml”文件，并且在文件中定义了2个单独的帮助器方法（在每个文件中您可以有任意数量的帮助器方法）： 一旦我们的帮助器定义在应用程序级别，我们就可以在应用程序的任何视图模板中使用它们。 在上面的\App_Code文件夹中的ScottGu.cshtml会逻辑编译为一个称为“ScottGu”的类。这个类中包含了“DisplayPrice” 和 “AnotherHelper”的静态成员。我们可以使用以下代码重写前面的示例来调用它： 当像如下方法调用应用程序级别帮助器时，Visual Studio将会提供智能感知代码： 5月15日更新：有一些人指出的一个问题是，当一个@helper保存在\app_code目录中时，默认情况下您不能访问其中的ASP.NET MVC Html帮助器方法。（例如Html.ActionLink(), Html.TextBox()等等)。而当它们定义在与视图相同的文件夹中，您是可以访问内置HTML帮助器方法的。当帮助器位于\app_code目录下时，确实当下是不支持内置HTML帮助器方法的访问的——我们将在下次发布中添加此功能。Paul Stovall有一个很好的帮助器类，您可以同时访问和使用它和您在\app_code目录下定义的@helper方法中的内置Html方法。请从这里了解更多关于如何使用的信息。 总结 Razor的@helper语法提供了一种简便的方法来将呈现功能封装到帮助方法中去。您可以在单个视图模板或整个项目的所有视图模板中重用它。 您可以使用此功能来编写更加干净、更易维护的代码。]]></description>
		<wfw:commentRss>http://yeseve.com/?feed=rss2&#038;p=377</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET MVC3 Razor视图引擎-基础语法</title>
		<link>http://yeseve.com/?p=375</link>
		<comments>http://yeseve.com/?p=375#comments</comments>
		<pubDate>Sat, 13 Aug 2011 00:39:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MVC]]></category>
		<category><![CDATA[Razor]]></category>

		<guid isPermaLink="false">http://yeseve.com/?p=375</guid>
		<description><![CDATA[I:ASP.NET MVC3在Visual Studio 2010中的变化 在VS2010中新建一个MVC3项目可以看出与以往的MVC2发生了很明显的变化。 1.ASP.NET MVC3必要的运行环境为.NET 4.0 (想在3.5用MVC3,没门!)。 2.默认MVC3模板项目已集成 3.全新的Razor视图引擎 @{ ViewBag.Title = &#8220;Home Page&#8221;; } @ViewBag.Message To learn more about ASP.NET MVC visit http://asp.net/mvc . @ServerInfo.GetHtml() 4. 关于所有带&#8221;_&#8221;开头的文档 ASP.NET 4默认情况下会拒绝所有访问地址以&#8221;_&#8221;开头的_*.cshtml文档.关于*.cshtml文档,其实他是WebMatrix的一部分,稍后将会详细介绍该以&#8221;_&#8221;文档的使用说明。 例如访问 http://localhost:7985/_ViewPage1.cshtml。 II:Razor视图引擎-基础语法 -基础- 所有以 @开头 或 @{ /* 代码体 */ } (在@与{直接不得添加任何空格) 的部分代码都会被ASP.NET引擎进行处理。在 @{ /*代码体*/ } 内的代码每一行都必须以&#8221;;&#8221;结束，如： @{ var i = 10; [...]]]></description>
		<wfw:commentRss>http://yeseve.com/?feed=rss2&#038;p=375</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C#入门之数组</title>
		<link>http://yeseve.com/?p=368</link>
		<comments>http://yeseve.com/?p=368#comments</comments>
		<pubDate>Fri, 05 Aug 2011 01:12:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://yeseve.com/?p=368</guid>
		<description><![CDATA[using System; class test { static void Main() { //int[] arr=new int[]{1,2,3}; int[] arr ={ 1, 2, 3 }; //可以用上面的方式声明数组，也可以用这种简化方式声明 //下面是foreach和for循环两种遍历数组方式 foreach (int i in arr){ Console.WriteLine("The number is : {0}", i); } for (int i = 0; i &#60; arr.Length; i++) { Console.WriteLine(arr[i].ToString()); } Console.ReadLine(); } } //实际应用中我们要使用的多半是动态数组，所以演示一下如何动态分配数组并且打印。注意在同一个类里要声明方法为静态static。因为Main（）是静态的。 using System; class test { public [...]]]></description>
		<wfw:commentRss>http://yeseve.com/?feed=rss2&#038;p=368</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lambda 表达式</title>
		<link>http://yeseve.com/?p=360</link>
		<comments>http://yeseve.com/?p=360#comments</comments>
		<pubDate>Wed, 20 Jul 2011 05:59:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MVC]]></category>

		<guid isPermaLink="false">http://yeseve.com/?p=360</guid>
		<description><![CDATA[1、“Lambda 表达式”是一个并匿名函数，它可以包含表达式和语句，且可用于创建委托或表达式树类型。 所有 Lambda 表达式都使用 Lambda 运算符=&#62;。 该运算符读为“goes to”。 该 Lambda 运算符的左边是输入参数（如果有），右边包含表达式或语句块。 Lambda 表达式 x =&#62; x * x 读作“x goes to x times x”。可以将此表达式分配给委托类型. 2、=&#62; 运算符具有与赋值运算符 (=) 相同的优先级，并且是右结合运算符。]]></description>
		<wfw:commentRss>http://yeseve.com/?feed=rss2&#038;p=360</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2011快女Baby sister手机铃声下载&#8211;曾轶可</title>
		<link>http://yeseve.com/?p=354</link>
		<comments>http://yeseve.com/?p=354#comments</comments>
		<pubDate>Thu, 14 Jul 2011 00:29:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[曾轶可]]></category>

		<guid isPermaLink="false">http://yeseve.com/?p=354</guid>
		<description><![CDATA[baby_sister 上面是mp3格式预览。 下面是iphone用的m4r格式，打包了，下载后需要把文件扩展名从.mp3改成.m4r Ring-baby_sister-40s扩展名改成m4r]]></description>
		<wfw:commentRss>http://yeseve.com/?feed=rss2&#038;p=354</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://yeseve.com/wp-content/uploads/2011/07/baby_sister.mp3" length="627010" type="audio/mpeg" />
		</item>
		<item>
		<title>Google Plus Google+ free invitation.免费邀请，需要的请留言</title>
		<link>http://yeseve.com/?p=349</link>
		<comments>http://yeseve.com/?p=349#comments</comments>
		<pubDate>Wed, 13 Jul 2011 23:37:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[曾轶可]]></category>

		<guid isPermaLink="false">http://yeseve.com/?p=349</guid>
		<description><![CDATA[Google Plus Google+ free invitation.免费邀请，需要的请留言]]></description>
		<wfw:commentRss>http://yeseve.com/?feed=rss2&#038;p=349</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone 4.3.1完美越狱后装的软件</title>
		<link>http://yeseve.com/?p=346</link>
		<comments>http://yeseve.com/?p=346#comments</comments>
		<pubDate>Tue, 05 Apr 2011 00:37:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://yeseve.com/?p=346</guid>
		<description><![CDATA[Activator 1.5.4这个没问题。 AppSync必装，我装的是xsellize源的 Backgrounder 1.0.3-1后台软件，官方源的不能用，需要firmware Barrel 3D 1.5.4-3页面切换效果的软件很炫，必备。 biteSMS 5.2，不用说了必备的短信软件。 CallLock 1.3-1 可以帮你打电话的时候自动锁屏，也可以感应锁屏。很实用 CyDelete 2.0.4-2，可以让deb的软件（有图标），直接抖动之后删除。（删除的时候不能同时打开Cydia） Data Counter 1.2流量统计器，最好的流量统计，可以实时显示网络连接速度 FolderEnhancer 1.4.2-1最好的文件夹增强工具，不用不知道，用了你就不想换了（缺点是狼源的有可能会安全模式，我有不安全模式的，一会附件有下载） FullScreen for Safari 1.20-2 可以使Safari全屏浏览必备 Google翻译 1.0.0.926目前只发现威锋源有，这个不用说了吧，很强大的翻译，还有各国语音 Gridlock 1.2.5-1,可以使桌面图标随意摆放，主题爱好者必备，DIY大人必备 GridTab for Safari 1.1-1可以使iphone拥有像ipad一样的网页导航，很方便一目了然。 Icon Renamer 1.1图标改名的 iFile 1.4.2类似于windows的资源管理器，iphone必备的东西 Installous 4.4 必备，可以安装ipa程序，也可以查看破解之后的程序哪个可以更新。 iPhoneDelivery 0.3.8短信回执，可以让短信和bitesms里面添加短信回执，很好很强大 KuaiDial 0.2.2b3-34 这个类似塞班上面的来电通，必备。功能异常强大 KuaiDial SMS Plugin这个是bitesms的插件，如果你装了bitesms和Kuaidial那么这个也最好装上 Lockscreen Dim Delay 1.2.1让你的锁屏变暗时间延长。。 MarkThatMessage短信时间标记，虽然现在的bitesms和kuaidial都有显示全部时间的功能，但是个人感觉还是这个最好 MiVTones [...]]]></description>
		<wfw:commentRss>http://yeseve.com/?feed=rss2&#038;p=346</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint 2010学习资料</title>
		<link>http://yeseve.com/?p=339</link>
		<comments>http://yeseve.com/?p=339#comments</comments>
		<pubDate>Wed, 20 Oct 2010 05:03:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[sharepoint]]></category>

		<guid isPermaLink="false">http://yeseve.com/?p=339</guid>
		<description><![CDATA[SharePoint 2010 中文Beta版下载 http://www.microsoft.com/downloads/details.aspx?displaylang=zh-cn&#038;FamilyID=77c30c6c-47fc-416d-88e7-8122534b3f37&#038;hash=jZKz1%2fDv6m%2fDR5O1RyBxfmtBywzZEy5rjopT5gdvxhxu5yB%2fk%2fLiTzVw%2bItekwLqmMNlSqNlipia8z%2b83uUnJQ%3d%3d SharePoint 2010 Product Keys SharePoint Server 2010 Beta (Enterprise CAL features): PKXTJ-DCM9D-6MM3V-G86P8-MJ8CY SharePoint Server 2010 for Internet Sites Beta, Enterprise: BV7VC-RMR6B-26P6Y-BTQDG-DX2KQ SharePoint 2010 for IT Pro http://www.mssharepointitpro.com/ SharePoint 2010认证和教材下载 http://www.itexamprep.com/ SharePoint 2010 MSDN http://msdn.microsoft.com/en-us/library/bb931739.aspx SharePoint 2010 Demo和学习资源 http://sharepoint2010.microsoft.com/Pages/default.aspx 微软SharePoint 2010论坛 http://social.msdn.microsoft.com/Forums/en-US/sharepoint2010general/threads SharePoint 2010 PressPass http://www.microsoft.com/presspass/presskits/sharepoint/Default.aspx SharePoint 2010 开发者中心 http://msdn.microsoft.com/en-us/sharepoint/ee514561.aspx SharePoint 2010 [...]]]></description>
		<wfw:commentRss>http://yeseve.com/?feed=rss2&#038;p=339</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C#实现斐波那契数列.Fibonacci Sequence</title>
		<link>http://yeseve.com/?p=337</link>
		<comments>http://yeseve.com/?p=337#comments</comments>
		<pubDate>Sat, 09 Oct 2010 06:40:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[iTech]]></category>
		<category><![CDATA[Fibonacci Sequence]]></category>

		<guid isPermaLink="false">http://yeseve.com/?p=337</guid>
		<description><![CDATA[主要是为了面试准备的。看到这个经常在面试时被考到，写一个练手。 要求实现0，1，1，2，3，5，8&#8230;.的斐波那契数列。2个前提，第一个是输入数字N，则列出从头开始到第N个数字的数列。第二个是输入数字M，则列出实际数列中小于M的所有项。 using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { Program pp = new Program(); //pp.myListA(15); string optionAB = Console.ReadLine(); if (optionAB == &#8220;a&#8221;) { Console.WriteLine(&#8220;Please input a number bigger than 0&#8243;); string myInput = Console.ReadLine(); int tmp = Convert.ToInt32(myInput); int i = 0; while (true) [...]]]></description>
		<wfw:commentRss>http://yeseve.com/?feed=rss2&#038;p=337</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

