织梦CMS - 轻松建站从此开始!

我的网站

汇编语言 软件工程 C/C++语言编程 机器人编程 算法 C#编程 vb .net教程 Java教程 VBnet 移动开发 c#教程
当前位置: 主页 > 编程开发 >
  • C#教程之用C#写的ADSL拨号程序的代码示例 日期:2017-06-19 20:00:23 点击:175 好评:0

    !--StartFragment--ADSL自动拨号类,前提是在系统中已经有了一个宽带拨号连接 调用代码: RASDisplayras=newRASDisplay(); ras.Disconnect();//断线 ras.Connect(adsl);//拨号 复制代码 代码如下: usingSystem; usingSy...

  • C#教程之讲解.NET环境下绘制模糊数学中隶属函数 日期:2017-06-19 19:58:06 点击:122 好评:0

    绘制模糊数学中隶属函数分布图 usingSystem; usingSystem.Collections.Generic; usingSystem.ComponentModel; usingSystem.Data; usingSystem.Drawing; usingSystem.Text; usingSystem.Collections; usingSystem.Windows.Forms; usingSystem.Dra...

  • C#教程之.net中前台javascript与后台c#函数相互调用 日期:2017-06-19 19:57:41 点击:121 好评:0

    C#代码与javaScript函数的相互调用 问: 1.如何在JavaScript访问C#函数? 2.如何在JavaScript访问C#变量? 3.如何在C#中访问JavaScript的已有变量? 4.如何在C#中访问JavaScript函数? 问题1答案如下: javaS...

  • C#教程之c# 数据库的 sql 参数封装类的编写 日期:2017-06-19 19:57:00 点击:51 好评:0

    数据库的sql参数封装类的编写 复制代码 代码如下: usingSystem; usingSystem.Data; usingSystem.Configuration; usingSystem.Web; usingSystem.Web.Security; usingSystem.Web.UI; usingSystem.Web.UI.WebControls; usingSystem.Web.UI.W...

  • C#教程之c# AJAX实践VS2005 + RSSToolKit 开发你自己的 日期:2017-06-19 19:56:17 点击:55 好评:0

    Rss是一种描述和同步网站内容的格式,是目前使用最广泛的XML应用。RSS搭建了信息迅速传播的一个技术平台,使得每个人都成为潜在的信息提供者。发布一个Rss文件后,这个RssFeed中包含...

  • C#教程之常用正则 常用的C#正则表达式 日期:2017-06-19 19:55:18 点击:81 好评:0

    常用的C#正则表达式! ^\d+$//非负整数(正整数+0) ^[0-9]*[1-9][0-9]*$//正整数 ^((-\d+)|(0+))$//非正整数(负整数+0) ^-[0-9]*[1-9][0-9]*$//负整数 ^-?\d+$//整数 ^\d+(\.\d+)?$//非负浮点数(正浮点数+0)...

  • C#教程之C#自动创建数据库实现代码 日期:2017-06-19 19:54:36 点击:52 好评:0

    usingSystem; usingSystem.Data; usingSystem.Configuration; usingSystem.Collections; usingSystem.Web; usingSystem.Web.Security; usingSystem.Web.UI; usingSystem.Web.UI.WebControls; usingSystem.Web.UI.WebControls.WebParts; usingSystem.Web.UI.Htm...

  • C#教程之C# Stream 和 byte[] 之间的转换 日期:2017-06-19 19:54:01 点击:164 好评:0

    /*------------------------ *Stream和byte[]之间的转换 *-----------------------*/ ///summary ///将Stream转成byte[] ////summary publicbyte[]StreamToBytes(Streamstream) { byte[]bytes=newbyte[stream.Length]; stream.Read(bytes,0,bytes.Len...

  • C#教程之xml 中的冒号 读取问题的解决 日期:2017-06-19 19:53:21 点击:175 好评:0

    c#读取xml时因为冒号问题的解决方法 参考文章:https://chs.gotdotnet.com/quickstart/howto/doc/Xml/XmlNameSpace.aspx 偶的源码: publicvoidbindXml(stringxmlUrl) { System.Xml.XmlDocumentdoc=newSystem.Xml.XmlDocument(); doc....

  • C#教程之C# 参考之访问关键字:base、this 日期:2017-06-19 19:52:31 点击:109 好评:0

    由于静态成员函数存在于类一级,并且不是对象的一部分,因此没有 this 指针。在静态方法中引用 this 是错误的。 索引器允许类或结构的实例按照与数组相同的方式进行索引。索引器类...

推荐内容