火焰

valeb
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
上一页 1 ··· 4 5 6 7 8

2015年2月10日

摘要: 1.将xsd 文件 转成 实体文件xsd FilePath(*.xsd) /c 2.将 xml 文件 转成 xsd 文件xsd FilePath(*.xml) 阅读全文

posted @ 2015-02-10 17:43 valeb 阅读(120) 评论(0) 推荐(0)

2015年1月16日

摘要: /// <summary> /// 汇率转换 /// </summary> /// <param name="Currency">当前币种:CNY</param> /// <param name="ToCurrency">目标币种:USD</param> /// <returns>汇率</retur 阅读全文

posted @ 2015-01-16 11:44 valeb 阅读(323) 评论(0) 推荐(0)

2015年1月13日

摘要: --1.查询某个表被哪些存储过程使用到 : select distinct object_name(id) from syscomments where id in (select object_id from sys.objects where type ='P') and text like'% 阅读全文

posted @ 2015-01-13 14:38 valeb 阅读(842) 评论(0) 推荐(0)

2014年10月15日

摘要: 读取服务器(局域网)上的文件 by .Net 阅读全文

posted @ 2014-10-15 09:38 valeb 阅读(426) 评论(0) 推荐(0)

2014年9月15日

摘要: 今天闲来无事写了下 “ .NET 用 NPOI 组件 将 图片文件 写到 EXCEL 中 ”先看效果:头是我加的,这个应该不是难事!再看代码: private void button1_Click(object sender, EventArgs e) { ///... 阅读全文

posted @ 2014-09-15 16:25 valeb 阅读(367) 评论(0) 推荐(0)

2014年3月31日

摘要: public static string FilterHtml(string string_include_html) { string[] HtmlRegexArr ={ #reg... 阅读全文

posted @ 2014-03-31 23:55 valeb 阅读(327) 评论(0) 推荐(0)

2014年3月14日

摘要: //1.获取当前程序域中所有的Assembly Assembly[] assArr = AppDomain.CurrentDomain.GetAssemblies();//2.获取当前 对象 所有在 Assembly Assembly ass = this.GetType().Assembly;//3.根据路径加载Assemblystring assPath = @"..\model\ClassLibrary.dll"; //如果这个*.dll 引用了别一个dllAssembly fromAssembly = Assembly.LoadFrom(assPath);//要加载 阅读全文

posted @ 2014-03-14 16:14 valeb 阅读(195) 评论(0) 推荐(0)

2013年12月9日

摘要: select stuff(RTRIM(Convert(varchar(max),(SELECT distinct ','+sku FROM AmazonSellingList where AmazonStatus!='Deleted' FOR XML PATH('')))),1,1,'')Vie... 阅读全文

posted @ 2013-12-09 11:03 valeb 阅读(236) 评论(0) 推荐(0)

2012年12月5日

摘要: 公式: (自枚)(Enum.Parse(typeof(自枚),待转字符串)) 枚举类型能转换成 int 类型 enum 定义的枚举名称 { 值1, 值2, …, 值n } eg: enum sex { 男, 女 // 或: 男=1, 女 } 阅读全文

posted @ 2012-12-05 23:27 valeb 阅读(639) 评论(0) 推荐(0)

2012年4月6日

摘要: 面对初学都的有效方法:位与: &0111010011001010 01000000两个数都为1,则为1;至少一个数为0,则为0;=============================位或: |0111010011001010 11111110两个数据都为0,则为0;至少一个数为1,则为1;=============================位异域:^0111010011001010 10111110 两个数相同则为0,不同则为1;=============================为了方便记忆,我便这样去理解记忆:1与 0或 同0异1与 是指逻辑与 两个数都为1时则为1 阅读全文

posted @ 2012-04-06 11:21 valeb 阅读(339) 评论(0) 推荐(0)

上一页 1 ··· 4 5 6 7 8
点击右上角即可分享
微信分享提示