<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://valley.egloos.com/rss/style/style.xsl" type="text/xsl" media="screen"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title>이글루스 'csharp3.0' 태그 최근글</title>
		<link>http://valley.egloos.com/tag/csharp3.0</link>
		<description>csharp3.0</description>
		<language>ko</language>
		<pubDate>Wed, 21 May 2008 16:39:54 +0900</pubDate>
		<generator>Egloos</generator>
		<item>
	<title><![CDATA[[LINQ] Auto-Implemented Properties]]></title>
	<link>http://kikiwaka.egloos.com/1719605</link>
	<guid>http://kikiwaka.egloos.com/1719605</guid>
	<description>
	<![CDATA[ 
Property 구현에 있어서 기존에 구현해야 했던 내용을 간략하게 구현할 수 있는 기능입니다.  class Person{        string name;        int age;         public string Name        {            get { return name; }            set { name = value; }        }         public string Age        {            get { return age; }            set { age = value; }        }}  는 다음과 같이 간략히 구현할 수 있습니다.   class Person{         public string Name { get; s	]]>
	</description>
	<pubDate>Wed, 21 May 2008 16:39:54 +0900</pubDate>
	<dc:creator><![CDATA[kikiwaka님의 이글루]]></dc:creator>
</item>
<item>
	<title><![CDATA[VS2008 100% 사용 팁 10가지 ]]></title>
	<link>http://yoonjs2.egloos.com/3681080</link>
	<guid>http://yoonjs2.egloos.com/3681080</guid>
	<description>
	<![CDATA[ 
  MSDN에서 구한 VS2008을 이용하여 C#에서 사용할수 있는 좋은 10가지 개발팁들입니다.  단위테스트등에 관심있으신 분은 꼭 참고하세요.   	]]>
	</description>
	<pubDate>Sat, 29 Mar 2008 22:29:42 +0900</pubDate>
	<dc:creator><![CDATA[그리즐리's 다락방 공작실 (분점)]]></dc:creator>
</item>
	</channel>
</rss>