string s = Console.ReadLine();double a =double.Parse(s);//强制转换
Console.WriteLine(a*1.7);//默认最多保留14位
s = String.Format("半径={0:f2}\n周长={1:f2}", a,2*3.14* a);
Console.WriteLine(s);
空类型值
int? a;//表明一个值可以为空类型
a = null;int b;if(a.HasValue)b =(int)a;//不能隐式转换elseb =1;
Console.WriteLine(b);
C#字符串可以@开头,并用双引号引起来:√
string s3 = @"c:\myFolder\myFile.txt";
若要在一个用 @ 引起来的字符串中包括一个双引号,则应使用两个双引号:例如: "You!" cried the captain.则用: @"""You!"" cried the captain."
常见数值输出格式
C 或 c
货币
Console.Write("{0:C}",2.5);//$2.50
Console.Write("{0:C}",-2.5);//($2.50)D 或 d
十进制数
Console.Write("{0:D5}",25);//00025E 或 e
科学型
Console.Write("{0:E}",250000);//2.500000E+005F 或 f
固定点
Console.Write("{0:F2}",25);//25.00
Console.Write("{0:F0}",25);//25G 或 g
常规
Console.Write("{0:G}",2.5);//2.5N 或 n
数字
Console.Write("{0:N}",2500000);//2,500,000.00X 或 x
十六进制
Console.Write("{0:X}",250);//FA
Console.Write("{0:X}",0xffff);//FFFF
类型转换
string s ="123";int a = System.Convert.ToInt32(s);
Console.WriteLine(a);
s ="2016/02/27";
DateTime dt = System.Convert.ToDateTime(s);
Console.WriteLine(dt);
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace HelloWorld
{classProgram{staticvoidSwap(ref int a, ref int b){int t=a;a = b;b = t;}staticvoidMain(string[] args){int a =3, b =4;Console.Write("{0},{1}\n",a,b);Swap(ref a,ref b);//要加refConsole.Write("{0},{1}\n",a,b);Console.ReadKey();}}}
foreach用法
int odd =0, even =0;int[] arr ={1,3,5,8,11};foreach(int x in arr)if(x %2==0)even++;elseodd++;
Console.WriteLine("{0},{1}",odd,even);
欢迎来到Azure Show!Azure ShowAzure Show 是由微软最有价值专家、微软技术社区区域总监卢建晖和微软开发者关系PM朱兴亮共同发起的一个关于微软Azure、开源技术、还有技术社区相关的线上节目。每期节目由MVP面对面、开源故事、从零开始以及Azure101组成,邀请微软技…
Coin Test时间限制:3000 ms | 内存限制:65535 KB难度:1描述As is known to all,if you throw a coin up and let it droped on the desk there are usually three results. Yes,just believe what I say ~it can be the right side or the …
本文为Photoshop初学者提供基本的Photoshop笔刷画笔工具的基本使用方法,这可以说是Photoshop最重要的功能。希望初学PS朋友认真学习,有所帮助!工具/原料Photoshop CC 2014或者其他较新版本的psPhotoshop笔刷画笔工具介绍:1、画笔工具在哪里呢…