• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
南南的空间
博客园    首页    新随笔    联系   管理    订阅  订阅
上一页 1 2 3 下一页
2013年3月31日
C#代码自动完成
摘要: 代码自动完成源码下载:AutocompleteMenu代码自动完成样例:AutocompleteMenuDemoIntroduction(简介)We all use VisualStudio's autocomplete menu, aka IntelliSense. This is very useful, is not it? Unfortunately, .NET FW does not contain built-in component for autocomplete menu. The proposed control fills this gap.Autocomplet 阅读全文
posted @ 2013-03-31 12:52 南南的博客 阅读(764) 评论(0) 推荐(0)
SharpDevelop-Chap18:Language Bindings
摘要: This chapter would not quite fit into the printed SharpDevelop book so it has been decided that it will be released online.作者认为不太适合印刷,所以发布网上了。其实这是介绍sharpdevelop怎么开发别的语言版本而写的。下载地址:http://files.cnblogs.com/cyangluiqin/8171_Chap18.pdfSomeone recently asked me by mail about adding IronPython support. Th 阅读全文
posted @ 2013-03-31 00:17 南南的博客 阅读(516) 评论(0) 推荐(0)
2013年3月30日
C#根据xsd生成xml
摘要: using System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using System.Web.UI.HtmlControls;using System.Xml;using System.Xml.Schema;using System.Collections;namespa 阅读全文
posted @ 2013-03-30 19:08 南南的博客 阅读(1004) 评论(0) 推荐(0)
2013年3月29日
SharpDevelop研究笔记
摘要: public virtual int SearchBracketBackward(IDocument document, int offset, char openBracket, char closingBracket) { int brackets = -1; // first try "quick find" - find the matching bracket if there is no string/comment in the way for (int i = offset; i > 0; --i)... 阅读全文
posted @ 2013-03-29 22:54 南南的博客 阅读(278) 评论(0) 推荐(0)
C# StringDictionary类
摘要: C# 面向对象编程,提供了很多用户方便的操作类,现在的这个StringDictionary就是一个专门存储以字符串为键和值的类集合,这个类的意义是:c#的都知道值类型里的string用的是相当广泛,其他的值类型也能转化为相应的字符串类型,这就是这个集合的意义,不过你还是可以使用其他的集合对象来替代它,但是要注意一点,如果是string型存储用这个可以减少内存的损耗,减少程序运行的时间现在一个简单的例子来看看这个类的用法:using System;using System.Collections.Specialized;using System.Text;namespace StringColl 阅读全文
posted @ 2013-03-29 18:00 南南的博客 阅读(802) 评论(0) 推荐(1)
2013年3月27日
JQuery-45个精典
摘要: 1. 如何修改jQuery默认编码(例如默认UTF-8改成改GB2312):$.ajaxSetup({ ajaxSettings:{ contentType:"application/x-www-form urlencoded;chartset=GB2312"}});2. 解决jQuery, prototype共存,$全局变量冲突问题:<script src="prototype.js"></script><script src="http://blogbeta.blueidea.com/jquery.js&quo 阅读全文
posted @ 2013-03-27 19:28 南南的博客 阅读(150) 评论(0) 推荐(0)
JQuery+post+asp.net的三种方法
摘要: <head> <title>无标题页</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link href="jquery/themes/icon.css" rel="stylesheet" type="text/css" /> <link href="jquery/themes/default/easyui.css& 阅读全文
posted @ 2013-03-27 15:34 南南的博客 阅读(214) 评论(0) 推荐(0)
2013年3月23日
c#文件读取
摘要: 最后的方法internal void modify_byte_jcw(string name, string path, string path2) { byte[] byData = null; char[] charData = null; FileStream aFile = null; try { aFile = new FileStream(path + @"/" + path2, FileMode.Open); ... 阅读全文
posted @ 2013-03-23 20:47 南南的博客 阅读(205) 评论(0) 推荐(0)
2012年9月24日
.net逆向安装
摘要: http://topic.csdn.net/u/20110421/23/305894dd-3872-4c70-a282-4953eee2e154.html 阅读全文
posted @ 2012-09-24 13:32 南南的博客 阅读(153) 评论(0) 推荐(0)
2012年9月23日
C#中文和UNICODE字符转换方法
摘要: //中文转为UNICODE字符string str = "中文"; string outStr = ""; if (!string.IsNullOrEmpty(str)) { for (int i = 0; i < str.Length; i++) { //将中文字符转为10进制整数,然后转为16进制unicode字符 outStr += "\\u" + ((int)str[i]).ToString("x"); } }//UNICODE字符转为中文 string str = "\\u4e2d\\u6 阅读全文
posted @ 2012-09-23 22:03 南南的博客 阅读(2717) 评论(0) 推荐(0)
上一页 1 2 3 下一页
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3