<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="rss.xsl" media="screen"?>
<rss version="2.0">
  <channel>
    <title>Aspx自由社区 - 学习c#</title>
    <link>http://www.freeaspx.com/showforum-30.aspx</link>
    <description>Latest 20 threads</description>
    <copyright>Copyright (c) Aspx自由社区</copyright>
    <generator>Discuz!NT</generator>
    <pubDate>Thu, 08 Jan 2009 19:59:45 GMT</pubDate>
    <ttl>60</ttl>
    <item>
      <title>初探c#（四）预定义类型</title>
      <description><![CDATA[您正在看的C#.NET教程是:初探c#（四）预定义类型。 1。4 预定义类型（Predefined types）

　　c#提供了一系列预定义类型。它们与c/c++有不少相似的地方。预定义引用类型有object和string。object类型是所有其他类型的基础。 

　　预定义类型包括符号数、无符号数、浮点、布尔、字符和十进制数。符号数有：

sbyte、short、 
int和l]]></description>
      <link>http://www.freeaspx.com/showtopic-453.aspx</link>
      <category>学习c#</category>
      <author>Free_lins</author>
      <pubDate>Thu, 17 Jul 2008 17:25:00 GMT</pubDate>
    </item>
    <item>
      <title>初探c#（七）语句（Statements）</title>
      <description><![CDATA[#（七）语句（Statements）。 1.7 语句（Statements） 

　　c#借用了c/c++大多数的语句方法，不过仍然有些值得注意的地方。还有些地方是有所改动的。在这里，我只提一些c#特有的东东。 

1.7.10 “foreach”语句 

　　“foreach”语句列举一个集合内的所有元素，并对这些元素执行一系列的操作。还是看看例子吧：*/ 

using Sys]]></description>
      <link>http://www.freeaspx.com/showtopic-456.aspx</link>
      <category>学习c#</category>
      <author>Free_lins</author>
      <pubDate>Thu, 17 Jul 2008 17:40:00 GMT</pubDate>
    </item>
    <item>
      <title>初探c#（六）统一系统类型</title>
      <description><![CDATA[您正在看的C#.NET教程是:初探c#（六）统一系统类型。 1.6 统一系统类型（Type system unification） 

　　c#独创了一种类型——统一系统类型（为了这个累刑，我头疼死了。谁有更好的名字，请务必告诉我）。总之，所有的其他类型，包括值和引用，都可以被当作统一系统类型来对待。从概念上说，所有的类型都从它派生。这样，其他的类型就可以使用统一系统类型的属性和方法。包括一些]]></description>
      <link>http://www.freeaspx.com/showtopic-455.aspx</link>
      <category>学习c#</category>
      <author>Free_lins</author>
      <pubDate>Thu, 17 Jul 2008 17:37:00 GMT</pubDate>
    </item>
    <item>
      <title>初探c#（五）数组类型（Array types）</title>
      <description><![CDATA[#（五）数组类型（Array types）。 　　请各位不要催俺！最近确实比较忙。俺手头的资料都不是自个找的。是一个朋友想看中文的，就给俺了一些。但他不喜欢上bbs。 ；（ 俺也是边看边译，肯定是错漏百出。所以加了一些个人看法，补充了一些东东作为补救。开始也没想到会有人感兴趣，也没打算写完整。希望大家多提点文章的漏洞。俺好改进。多谢啦！ 

1.5 数组类型（Array types） 

]]></description>
      <link>http://www.freeaspx.com/showtopic-454.aspx</link>
      <category>学习c#</category>
      <author>Free_lins</author>
      <pubDate>Thu, 17 Jul 2008 17:26:00 GMT</pubDate>
    </item>
    <item>
      <title>初探c#（三）类型</title>
      <description><![CDATA[#（三）类型。 1。3 类型

　　c#支持两种基本的类型：一种是值（value types），一种是引用（reference types）。值包括简单类型（char、int、和float），枚举（enum）和结构（struct）。引用包括类（class），界面（interface），代表（delegate）和数组阵列（array）。值与引用不同之处在于：值直接存储它的数据内容；而引用存储对象]]></description>
      <link>http://www.freeaspx.com/showtopic-452.aspx</link>
      <category>学习c#</category>
      <author>Free_lins</author>
      <pubDate>Thu, 17 Jul 2008 17:23:00 GMT</pubDate>
    </item>
    <item>
      <title>初探c#（二）自动化的内存管理</title>
      <description><![CDATA[1。2 自动化的内存管理（Automatic memory management） 

　　手动管理内存需要程序员自行分配和释放内存块。这要求程序员有清晰的头脑和对整个运行过程有十分的把握（好难！）。而c#把程序员从这难以承担的任务中解放出来。在多数的情况下，这种自动内存管理提高代码的质量和程序员的生产力。并且，不会对程序的意图和执行产生幅面的影响（？俺可不相信m$的鬼话）。不过，估计比jav]]></description>
      <link>http://www.freeaspx.com/showtopic-451.aspx</link>
      <category>学习c#</category>
      <author>Free_lins</author>
      <pubDate>Thu, 17 Jul 2008 17:22:00 GMT</pubDate>
    </item>
    <item>
      <title>初探c#（一）绪论</title>
      <description><![CDATA[您正在看的C#.NET教程是:初探c#（一）绪论。 翻译至《c＃ language reference》microsoft press！

/* 1 绪论 

c# 是一种简练，时髦（？），面向对象（object oriented），类型可靠（type-safe）的 编程语言。它（发音：C sharp）是从c/c++发展而来的（？俺觉得更象是java），和c/c++是一个语系。所以，很容易]]></description>
      <link>http://www.freeaspx.com/showtopic-450.aspx</link>
      <category>学习c#</category>
      <author>Free_lins</author>
      <pubDate>Thu, 17 Jul 2008 17:21:00 GMT</pubDate>
    </item>
  </channel>
</rss>