联合开发网   搜索   要求与建议
                登陆    注册
排序按匹配   按投票   按下载次数   按上传日期
按分类查找All C#编程(535) 

[C#编程] BB84.Morse

莫尔斯码是电信中使用的一种方法,用于将文本字符编码为两个不同信号持续时间的标准化序列,称为点和破折号或dits和dahs。
Morse code is a method used in telecommunication to encode text characters as standardized sequences of two different signal durations, called dots and dashes, or dits and dahs. (2024-02-23, C#, 0KB, 下载0次)

http://www.pudn.com/Download/item/id/1708640015465281.html

[C#编程] tetris-oop

ИГратетриснаWinForms。2019年俄罗斯方块游戏。ПрОектВОПстие。КаиПереметоиееитенаа我ме.ткоммнтари。Вno.мnorнnorсти:ПрnorфиЛ,наст.рnor.ки,смеаГраф我к我,Пауа,ит-к。
Игра тетрис на WinForms. Tetris Game 2019. Проект в ООП стиле. Каждый метод и переменная имеют комментарий. Возможности: профиль, настройки, смена графики, пауза, чит-коды, уровни. (2024-02-16, C#, 0KB, 下载0次)

http://www.pudn.com/Download/item/id/1708087318667773.html

[C#编程] appleVotsadfeV2

在线投票系统(加文档)源码 项目来源及开发的目的和意义 随着INTERNET的发展,世界网民的数量急剧增加,社会的信息化强度增强,企业竞争之激烈,故对市场信息的掌握范围不仅仅是周边的 一些信息,而应把范围扩展到全国,甚至全世界,INTERNET恰恰是实现这目标的有利工具.对于新产品,新观点的调查范围应该更广泛 ,消息应该及时反馈给企业单位,故一个网上在线投票系统应允而生,它正好充分满 (2022-02-15, C#, 3816KB, 下载0次)

http://www.pudn.com/Download/item/id/1644890100696684.html

[C#编程] 波形记录

主要实现功能是将串口发送过来的数据按波形显示 注:本例是以串口调试助手和虚拟串口VSPD软件模拟串口发送数据的 我所用的串口调试助手每次发送过来的单字节都会自动在末尾加换行“\r\n”,所以我用读三次显示第一个方式记录数据,串口调试助手发送时记得勾选hex发送,每次发送一个字节。数据处理代码那块需要根据自己实际传送的数据加以修改,已在代码相应地方标注,若用本资源的串口调试助手则不需要改。串口调试助 (2022-02-14, C#, 272KB, 下载1次)

http://www.pudn.com/Download/item/id/1644824220220005.html

[C#编程] OM_2WAY_v3.6a_EN

这个EA是头皮策略的,一般用于欧美5分钟周期运行,也添加了马丁逆势加仓的功能,另外还有整体出场的功能。开仓条件较为严格,单量不多,胜率还不错。总体盈利能力也还可以。
This is a good EA.You can have a try. (2017-03-09, C++ Builder, 57KB, 下载58次)

http://www.pudn.com/Download/item/id/1489033412209866.html

[C#编程] CSharp-QQ

北大青鸟C#的QQ项目源码,功能比较完整,适合初学者学习
Beida Jade Bird QQ project source code in C#, function more complete, suitable for beginners to learn (2015-10-06, C#, 15841KB, 下载25次)

http://www.pudn.com/Download/item/id/1444106569902326.html

[C#编程] Npc

梦幻古龙NPC文件,也就是梦幻古龙事件触发文件,个人做了一些新加入和修改!可以直接覆盖原目录使用,也可以用记事本直接打开修改!
Dream Cologne NPC file, it is Dream Cologne event file, do some new and revised! Direct overwrite the original directory, you can directly open the modification with notepad! (2015-04-02, Unix_Linux, 2821KB, 下载6次)

http://www.pudn.com/Download/item/id/1427964252993144.html

[C#编程] china-code.net.zhy.0

Visual C#动态修改图片-在图片上添加描述信息,类似图片加水印的功能,特别是加文字文印,先给选中的图片上写上具体的ID编号,还需要判断文件类型是否为图像类型
Visual C# dynamic modification Image- add descriptive information on the image, similar to picture watermark function, especially the addition of text printed text, give the selected picture to write on a specific ID number, you need to determine whether the type of image file types (2013-10-31, Visual C++, 33KB, 下载4次)

http://www.pudn.com/Download/item/id/2387847.html

[C#编程] SGSCode

用C#语言模拟三国杀中的武将人物及其技能,要求如下: (1) 定义一个接口 f,里面声明“杀:kill()”,“闪:parry()”,“桃:eatingpeach()”,“装备:arm()”,“锦囊:using-wisdom()”五个函数,声明两个常量,最小和最大攻击距离; (2) 定义一个抽象类,武将hero,里面定义两个方法,一个是抽象方法“技能:capability()”,一个是具体的方法“决斗:duel()”; (3) 实现至少两个武将类(一男一女:赵云、黄月英),继承抽象类hero并且实现接口f。成员变量包括“性别、国别、生命值、布尔量(true表示长得好看、false表示长得难看)、当前角色(主公、忠臣、内奸、反贼)、当前手牌数等”,实现其构造函数,并实现接口和抽象类中的所有声明方法(若该武将不止一个技能,还可以在具体类中自行定义capability1(),capability2()等),并覆盖抽象类中的duel()方法; (4) 生成具体的武将实例并运行; (5) 若完成此功能附加加5分:生成武将后,利用多线程的互斥机制实现两个武将的单挑,直到某一武将死亡,各武将的手牌可事先随机指定10张(用一维字符串或者字符数组保存,出牌次序可由编程者指定,该题只注重单挑的出牌过程和最终结果,不考察智能出牌和摸牌的方法实现)。
Simple Three killed procedures (2013-09-25, C#, 1068KB, 下载26次)

http://www.pudn.com/Download/item/id/2362064.html

[C#编程] CSharp-dll

C#好用第三方控件合集(dll) 包含: MSplitContainer,MoveForm,IrisSkin2,SideBar,AutoDockManage,log4net-1.2.11
C# easy to use third-party controls collection (dll) contains: MSplitContainer, MoveForm, IrisSkin2, SideBar, AutoDockManage, log4net-1.2.11 (2013-07-03, C#, 8074KB, 下载56次)

http://www.pudn.com/Download/item/id/2295435.html

[C#编程] csharptesttime

C#开发的商业软件,有时候需要加个试用期,在试用期内限制部分功能,试用期结束则无法使用。本源码既解决此问题
Commercial software development in C#, and sometimes need to add a trial period, to limit some of the features in the trial period, you can not use the end of the trial period. The source resolve this issue (2012-11-13, C#, 69KB, 下载80次)

http://www.pudn.com/Download/item/id/2046293.html

[C#编程] Calculator-Sourcecode

1、实现十进制下的四则运算(加、减、乘、除)和四则混合运算 2、实现十进制转化为二进制或十六进制 3、实现进行一些常用的函数运算(比如sin、cos、tan、cot、sqrt、ln等) 4、实现“(”,“)”符号的表达式的计算
1 decimal, under the four operations ( addition, subtraction, multiplication, addition) and four mixed computing 2, decimal converted to binary or hexadecimal sixteen 3, implementation of some commonly used function operation ( such as sin, cos, Tan, cot, sqrt, LN etc.) 4, achieve" ("," )" symbolic expressions for the calculation (2012-01-01, C/C++, 13KB, 下载4次)

http://www.pudn.com/Download/item/id/1748181.html

[C#编程] cSharp-skin

手把手教你制作C#皮肤,包括控件的制作,不可多得的入门材料
Taught you make C# the skin, including the control of production, a rare place to start (2011-07-06, C#, 712KB, 下载7次)

http://www.pudn.com/Download/item/id/1590625.html

[C#编程] 5

C语言学习,立于学了C语言,但想更近一步的人群
C language learning, learning a C-stand, but the crowd closer to (2011-05-10, Visual C++, 12942KB, 下载49次)

http://www.pudn.com/Download/item/id/1526144.html

[C#编程] CSharp-Case

包括十个用CSharp编写的系统程序文件案例,可以用来参考学习.如:俄罗斯方块游戏,某某管理系统等.
Including ten with a CSharp program files written in case the system can be used to refer to learning. Such as: Tetris game, certain management systems. (2011-04-09, C#, 15997KB, 下载7次)

http://www.pudn.com/Download/item/id/1484669.html

[C#编程] AtlasCopcoTools-And-assembly-systems

Atlas Copco(阿特拉斯)工控机配套电枪开发文档,接口规范说明.官网上没有的,很难找到的文档.有需要的朋友拿去吧
Atlas Copco (Atlas) stun guns IPC supporting development documents, interface specifications. Not the official line, it is difficult to find the document. Take it to a friend in need (2011-04-01, C#, 3879KB, 下载16次)

http://www.pudn.com/Download/item/id/1475158.html

[C#编程] 4

本实验的实现功能:上电后模块向电脑串口发出问候语,由串口向模块发送不大于30个字符的字符串,末尾加#结束,模块会返回相同的字符串,波特率为57600。适用于zigbee开发。
Implementation features of this experiment: After power module to the computer serial port greeting sent by the serial port to the module sends no more than 30 characters of the string, add# at the end of the end, the module will return the same string, the baud rate to 57600 . For zigbee development. (2011-02-11, C/C++, 22KB, 下载2次)

http://www.pudn.com/Download/item/id/1426891.html

[C#编程] C-Calculator

用C#写的比较基础的windows Form 程序,该计算器实现了基础的数学运算,如加,减,乘,除等任务.主要是通过该程序学习vs.net的   编程环境,以及windows Form程序.主要针对初学者
Comparison with C# to write the basis of windows Form procedures, the calculator to achieve a foundation for mathematical operations, such as addition, subtraction, multiplication, in addition to other tasks. Primarily through the program to learn vs.net programming environment, as well as windows Form program. aimed at beginners (2010-02-01, C/C++, 4KB, 下载4次)

http://www.pudn.com/Download/item/id/1056347.html

[C#编程] ssdlh_bbs_V1.0

系统使用Asp.net技术,以Xml文件存储数据,结合使用xslt技术生成静态html页面。代码采用分层架构,易于阅读理解,又使用片段缓存加数据缓存以提高性能,应该对初学者有所帮助
System uses the Asp.net technology to Xml file storage of data, combined with the use of xslt techniques generate static html pages. Code using a layered architecture, easy reading comprehension, but also increase the use of fragment caching data caching to improve performance, it should be helpful for beginners (2010-01-21, C#, 374KB, 下载5次)

http://www.pudn.com/Download/item/id/1046943.html

[C#编程] 1.6

编写一个控制台应用程序,完成下列功能,并写出运行程序后输出的结果。 1) 创建一个类A,在A中编写一个可以被重写的带int类型参数的方法MyMethod, 并在该方法中输出传递的整型值加10后的结果。 2) 再创建一个类B,使其继承自类A,然后重写A中的MyMethod方法,将A中接 收的整型值加50,并输出结果。 3) 在Main方法中分别创建类A和类B的对象,并分别调用MyMethod方法
Write a console application, complete the following functions, and write the output after running the program results. 1) create a category A, in A in the preparation of a can be rewritten with int type parameters MyMethod, and in the methods of transmission of the output value of 10 after cosmetic surgery results. 2) re-creation of a category B, so that it inherited from the category A, and then rewrite A in MyMethod method to receive the integer A value of plus 50, and output results. 3), respectively, in the Main method to create category A and category B of the object, and call respectively MyMethod method (2008-12-29, C#, 10KB, 下载4次)

http://www.pudn.com/Download/item/id/618682.html