#region 实体转换 /// /// add extension method for datable /// /// /// public static IList ToList(this DataTa...
分类:
其他好文 时间:
2015-06-19 10:07:49
阅读次数:
91
插入代码段:Ctrl+K,X。如果你想快速的输入代码,这个必须记住。配合F2一起用,那将会成为一把利器。当然,使用“Ctrl+K,S”,你可以更快速的输入像try和#Region一样的代码段。强迫显示参数信息:Ctrl-Shift-空格。这绝对是个好东西。强迫智能感知:Ctrl+J。智能感知是Vis...
分类:
其他好文 时间:
2015-06-19 00:01:27
阅读次数:
271
WPF窗体的命令绑定方法一:使用代码 #region Command private void HelpCanExecute(object sender, CanExecuteRoutedEventArgs e) ...
出现以下错误:Error: L6915E: Library reports error: The semihosting __user_initial_stackheap cannot reliably set up a usable heap region if scatter loading i...
分类:
其他好文 时间:
2015-06-18 11:04:04
阅读次数:
544
using System;
using System.Text;
using System.Security.Cryptography;
using System.IO;
using UnityEngine;
public class StringEncryption{
#region 方法一 C#中对字符串加密解密(对称算法)
private stat...
分类:
编程语言 时间:
2015-06-17 15:21:46
阅读次数:
124
论文笔记:Faster R-CNN:Towards Real-Time Object Detection with Region Proposal Networks文章: http://arxiv.org/abs/1506.01497
源码:坐等。。。。目录:论文笔记 Faster R-CNNTowards Real-Time Object Detection with Region Propo...
分类:
Web程序 时间:
2015-06-17 09:48:32
阅读次数:
13336
#region 识别urlStr是否是网络路径
///
/// 识别urlStr是否是网络路径
///
///
///
public static bool UrlDiscern(string urlStr)
{
if (Regex.IsMatch(url...
#region 判断远程文件是否存在
///
/// 判断远程文件是否存在
///
///
///
public static bool RemoteFileExists(string fileUrl)
{
HttpWebRequest re = null...
#region 返回图片的字节流byte[]
///
/// 返回图片的字节流byte[]
///
///
///
///
public static byte[] getImageByte(string imagePath, WebClient webClient)...
#region 移除字符串末尾指定字符
///
/// 移除字符串末尾指定字符
///
/// 需要移除的字符串
/// 指定字符
/// 移除后的字符串
public static string RemoveLastChar(string str, string val...