要学好C#,基础知识的重要性不言而喻,现将常用到的一些基础进行总结,总结如下: 1. 数据类型转换: 强制类型转换(Chart--> int): char cr='A'; int i = (int)(cr); 2. 委托/匿名函数/Lamda表达式: 委托是匿名函数的起源,Lamda表达式又是匿名函数的升华.这些又是如何体现的呢,请看: 委托示例: namespace Delegate { class Program { public delegate void TDelegate(int…
1.在控制台接受数据时可以这样输入: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace 基础知识2 { class Program { static void Main(string[] args) { double a, b, c; Console.WriteLine("计算两数之和——"); Console.Write("请输入a:…
基础知识一: using System; using System.Collections.Generic; using System.Linq; using System.Windows.Forms; namespace WindowsFormsApplication2 { public class ParentClass { public ParentClass() { } public string NamePropety { get; set; } public string GetNa…