C#.NET
文章平均质量分 67
银月术
这个作者很懒,什么都没留下…
展开
-
DateTime.ToString Method (String)
Converts the value of the current DateTime object to its equivalent string representation using the specified format. using System;public class DateToStringExample{ public static void原创 2010-02-20 10:57:00 · 435 阅读 · 0 评论 -
C# “@”关键字
如果关键字包含那一个“@”前缀,那么也可以作为标识符使用。例如,可将一个局部变量命名为@retrun。类似地(虽然不符合C#大小写规范),可将一个方法命名为@throw()。 在微软的实现中,还有4个未文档化的保留字,它们是_arglist、_makeref、_reftype和_refvalue。仅在极少数互操作情形下才需要用到它们,你完全可以忽略它们。原创 2010-11-19 20:14:00 · 573 阅读 · 0 评论 -
[AJAX Control] Sample Code for Accordion Control DataSource
Sample Code for Accordion Control DataSourceIn this example code you will learn the use of GridView control inside the ContentTemplate of the Accordion control. We will use the default Northwind database to bind the categoryName as Header in the Accordion原创 2010-10-21 10:04:00 · 1025 阅读 · 0 评论 -
[AJAX Control] Calendar Control CSS Theme Customization
Calendar Control CSS Theme Customization<br />AJAX Calendar control has a set of CSS classes that you can override by using new styles. To do this you need a new name for user defined class for example .cal_Theme1 and associate it with the default names of原创 2010-10-20 20:59:00 · 964 阅读 · 0 评论 -
【C#图解】PictureBox.SizeMode 属性
<br />PictureBoxSizeMode.Normal:<br /> <br />默认情况下,在 Normal 模式中,Image 置于 PictureBox 的左上角,凡是因过大而不适合 PictureBox 的任何图像部分都将被剪裁掉。<br /> <br /><br /> <br /> <br />PictureBoxSizeMode.StretchImage:<br /> <br />使用 StretchImage 值会使图像拉伸或收缩,以便适合 PictureBox。<br /> <br原创 2010-10-14 12:44:00 · 25316 阅读 · 4 评论 -
DirectorySearcher 的PropertiesToLoad所有属性
<br />homemdb<br />distinguishedname<br />countrycode<br />cn<br />lastlogoff<br />mailnickname<br />dscorepropagationdata<br />msexchhomeservername<br />msexchmailboxsecuritydescriptor<br />msexchalobjectversion<br />usncreated<br />objectguid<br />whench转载 2010-09-14 10:25:00 · 1796 阅读 · 0 评论 -
同步服务器套接字示例
<br />下面的示例程序创建一个接收来自客户端的连接请求的服务器。该服务器是用同步套接字生成的,因此在等待来自客户端的连接时挂起服务器应用程序的执行。该应用程序接收来自客户端的字符串,在控制台显示该字符串,然后将该字符串回显到客户端。来自客户端的字符串必须包含字符串“<EOF>”,以发出表示消息结尾的信号。<br /> <br /> using System;using System.Net;using System.Net.Sockets;using System.Text;publ转载 2010-06-10 09:05:00 · 465 阅读 · 0 评论 -
同步客户端套接字示例
<br />下面的示例程序创建一个连接到服务器的客户端。该客户端是用同步套接字生成的,因此挂起客户端应用程序的执行,直到服务器返回响应为止。该应用程序将字符串发送到服务器,然后在控制台显示该服务器返回的字符串。<br /> <br />using System;using System.Net;using System.Net.Sockets;using System.Text;public class SynchronousSocketClient { public st转载 2010-06-10 09:04:00 · 408 阅读 · 0 评论 -
异步服务器套接字示例
<br />下面的示例程序创建一个接收来自客户端的连接请求的服务器。该服务器是用异步套接字生成的,因此在等待来自客户端的连接时不挂起服务器应用程序的执行。该应用程序接收来自客户端的字符串,在控制台显示该字符串,然后将该字符串回显到客户端。来自客户端的字符串必须包含字符串“<EOF>”,以发出表示消息结尾的信号。<br /> <br />using System;using System.Net;using System.Net.Sockets;using System.Text;using转载 2010-06-10 08:54:00 · 488 阅读 · 0 评论 -
异步客户端套接字示例
<br />下面的示例程序创建一个连接到服务器的客户端。该客户端是用异步套接字生成的,因此在等待服务器返回响应时不挂起客户端应用程序的执行。该应用程序将字符串发送到服务器,然后在控制台显示该服务器返回的字符串。<br /> <br />using System;using System.Net;using System.Net.Sockets;using System.Threading;using System.Text;// State object for receiving转载 2010-06-10 08:56:00 · 498 阅读 · 0 评论 -
C# Guid format說明
C# Guid.ParseExact(string input,string format) format 参数可以包含以下格式说明符。在下表中,返回值中的所有数字位均为十六进制。每个“x”字符表示一个十六进制位,每个连字符(“-”)、大括号(“{”、“}”)和圆括号(“(”、“)”)如下所示。N: 32 位: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx D: 由连字符分隔的 32 位数字: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx B: 括在大括原创 2010-11-19 11:14:00 · 1309 阅读 · 0 评论