摘要: Is(is关键字判断类型的兼容性, person is Animal)using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Collections;namespace ConvertTest{ class Program { static void Main(string[] args) { #region//as 和is Person p = new Person(); ... 阅读全文
posted @ 2012-12-03 20:11 张洁MM 阅读(252) 评论(2) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Collections;namespace ConvertTest{ class Program { static void Main(string[] args) { int i = 20; double d = i; Console.WriteLine(d.ToString()); ... 阅读全文
posted @ 2012-12-03 19:59 张洁MM 阅读(331) 评论(0) 推荐(0) 编辑