2012年5月24日

C#运算符与表达式

摘要: the operator andexpression are similar to C++.However C# had added some new and useful operators ,for example :is,as,etc.is operatorthe is operator is used for checking if the operation-type is equal or able to exchange to each other.the is operator is particular fitted forPolymorphism condition.The 阅读全文

posted @ 2012-05-24 16:53 .ne菜鸟 阅读(171) 评论(0) 推荐(0) 编辑

C#修饰符

摘要: 1.set vector and get vector is needed in CSharp programing.2.readonly is different from const.for example:Class Myclass{const int a=10;//this paramater can't be changed any morereadonly int b=10;//this paramater can't be changed.tooreadonly int c;//c can be initialed in the futrue.public Myc 阅读全文

posted @ 2012-05-24 16:21 .ne菜鸟 阅读(137) 评论(0) 推荐(0) 编辑

2012年5月23日

C# 中常用的字符处理“@”等

摘要: 转义字符转义字符的意义\n 回车换行\t横向跳到下一制表位置\v竖向跳格\b退格\r回车\f 走纸换页\\反斜线符"\"\'单引号符\a鸣铃\ddd1~3位八进制数所代表的字符\xhh1~2位十六进制数所代表的字符主要想说明@的意义。强制不转义为解决转义符对字符串的影响,C#提供了一种解决方法,即在字符串前加上字符@,这样字符串中的所有字符都会被看作原来的含义,而不会被解释为转义符。示例代码如下:string f1 = @"C:\MyDocuments\default.cs";@在c#中为强制不转义的符号,在里面的转义字符无效stringstr1 阅读全文

posted @ 2012-05-23 15:02 .ne菜鸟 阅读(366) 评论(0) 推荐(0) 编辑

C#获取本地地址和IP

摘要: 在C#中获取一台电脑名,IP地址及当前用户名是非常简单,以下是我常用的几种方法,如果大家还有其他好的方法,可以回复一起整理: 1. 在ASP.NET中专用属性: 获取服务器电脑名:Page.Server.ManchineName 获取用户信息:Page.User 获取客户端电脑名:Page.Request.UserHostName 获取客户端电脑IP:Page.Request.UserHostAddress 2. 在网络编程中的通用方法: 获取当前电脑名:static System.Net.Dns.GetHostName() 根据电脑名取出全部IP地址:static Syste... 阅读全文

posted @ 2012-05-23 12:09 .ne菜鸟 阅读(2547) 评论(0) 推荐(1) 编辑

2012年5月22日

C#如何获得系统时间

摘要: C#获取时间,日期//C#里内置的DateTime基本上都可以实现这些功能,巧用DateTime会使你处理这些事来变轻松多了 //今天DateTime.Now.Date.ToShortDateString(); //昨天,就是今天的日期减一DateTime.Now.AddDays(-1).ToShortDateString(); //明天,同理,加一DateTime.Now.AddDays(1).ToShortDateString(); //本周(要知道本周的第一天就得先知道今天是星期几,从而得知本周的第一天就是几天前的那一天,要注意的是这里的每一周是从周日始至周六止 DateTime.Now 阅读全文

posted @ 2012-05-22 15:29 .ne菜鸟 阅读(1839) 评论(0) 推荐(0) 编辑

导航