-
csharp-logger-0.1.1
C#的日志工具,思路log4j跟一致.请参阅本站关于log4j的其他资源(C# log tools, consistent with the idea of log4j. Please refer to this site on other resources log4j)
- 2009-04-11 21:23:42下载
- 积分:1
-
50-ejercicios-de-pseudocodigo
50 pseudocodigos CSharp
- 2012-07-02 07:18:26下载
- 积分:1
-
Csharp.in.Depth.4th.Edition.pdf
说明: C# 开发比较经典的书籍,英文版,适合深入学习,适合自学,还可以学习英文(C# Develop Classic Books)
- 2020-06-22 10:00:01下载
- 积分:1
-
winform中视频播放应用
winform中视频播放的一系列无边框 ,移动等效果(A series of borderless, mobile and other effects of video playback in WinForm)
- 2020-06-19 20:20:01下载
- 积分:1
-
MapControlAppPropertyPage
在此示例中你会找到一个实施一个propertysheet和propertypage。其属性的对象是由propertypage任何特征层加载到mapcontrol应用。该propertypage使用symbologycontrol显示标记,线条和填充符号,这是用来更新所使用的符号的渲染器的功能层。该示例使用symbologycontrol结合mapcontrol,toccontrol,toolbarcontrol和控制命令。(In this sample you will find an implementation of a PropertySheet and a PropertyPage. The object whose properties are controlled by the PropertyPage is any feature layer loaded to the MapControl application. The PropertyPage uses the SymbologyControl to display marker, line and fill symbols, which are used to update the symbol used by the renderer of the feature layer. The sample uses the SymbologyControl in conjunction with MapControl , TOCControl, ToolbarControl and the controls commands.
)
- 2011-07-13 07:13:52下载
- 积分:1
-
paho.mqtt.c.rar
下载的mqtt源码,经cmake编译后生成的vs2015解决方案,mqtt_cmake_c 和 paho.mqtt.c
- 2021-05-06下载
- 积分:1
-
DomainSearchII
C段反查,调用的别人网站接口,改进中..(Section C reverse lookup, calling others site interface improvements ..)
- 2013-09-27 12:04:30下载
- 积分:1
-
C# pop3 邮件接收程序
private void Connect_Click(object sender, System.EventArgs e) { //将光标置为等待状态 Cursor cr = Cursor.Current; Cursor.Current = Cursors.WaitCursor; String a ,b,c; //用110端口新建POP3服务器连接 Server = new TcpClient(PopServer.Text, 110); Status.Items.Clear(); try { //初始化 NetStrm = Server.GetStream(); RdStrm = new StreamReader(Server.GetStream()); Status.Items.Add(RdStrm.ReadLine()); //登录服务器过程 Data = "USER " Username.Text CRLF; szData = System.Text.Encoding.ASCII.GetBytes(Data.ToCharArray()); NetStrm.Write(szData, 0, szData.Length); Status.Items.Add(RdStrm.ReadLine()); Data = "PASS " Password.Text CRLF; szData = System.Text.Encoding.ASCII.GetBytes(Data.ToCharArray()); NetStrm.Write(szData, 0, szData.Length); Status.Items.Add(RdStrm.ReadLine()); //向服务器发送STAT命令,从而取得邮箱的相关信息:邮件数量和大小 Data = "STAT" CRLF; szData = System.Text.Encoding.ASCII.GetBytes(Data.ToCharArray()); NetStrm.Write(szData, 0, szData.Length); //Status.Items.Add(RdStrm.ReadLine()); //改变按钮的状态 Connect.Enabled = false; Disconnect.Enabled = true; Retrieve.Enabled = true; //将光标置回原来状态 Cursor.Current = cr; } catch (InvalidOperationException err) { Status.Items.Add("Error: " err.ToString()); } }
- 2014-11-02下载
- 积分:1
-
单词统计
3.单词统计和替换
⑴任务描述
任给一篇英文文章,统计其中每个单词共出现多少次,并可对每个单词做替换。
⑵功能要求
①英文文章以文件形式输入。
②统计结果保存之文件。
③对单词进行替换时,允许用户选择全部替换或换成一个一个地替换。(Word statistics and replacement)
- 2020-12-20 17:59:08下载
- 积分:1
-
poly
一个简单的poly实系数一元项式问题的一个简单的解法,希望对大家有帮助!(A simple coefficient of poly is a dollar-type problem of a simple solution, and they hope to help everyone!)
- 2008-04-18 10:21:35下载
- 积分:1