摘要:
安装libsvm的时候用到了mex -setup,有的会报 Could not find the 64-bit compiler. This may indicate that the "X64 Compilers and Tools" or the Microsoft Windo... 阅读全文
摘要:
环境:vs2013+mysql5.6+mysql connector for .net 6.8.3+MySQL for Visual Studio 1.1.3参考:http://dev.mysql.com/doc/connector-net/en/connector-net-entityframework60.htmlmvc4连接mysql的资料很少,百度了一圈也没找到。一开始用的vs2013怎么也连接不上mysql,连ado.net不显示,用mysql.data的直接连接倒是能成功,但是到mvc的时候就需要各种配置了。最后在mysql的官网上找到了资料:1.首先要先安装MySQL for V 阅读全文
摘要:
foreach (Control var in panel.Controls) {if (var is Billet) {panel.Controls.Remove(var);var.Dispose();}}做一个C#动画时候,动态创建的一些picturebox需要刷新,清除后重新显示,billet为继承的picturebox类,这样做的好处是把要清除的归为一个类,只进行删除即可 阅读全文
摘要:
using System;using System.Security.Cryptography;using System.Text;class Example{ // Hash an input string and return the hash as // a 32 character hexadecimal string. static string getMd5Hash(string input) { // Create a new instance of the MD5CryptoServiceProvider object. MD... 阅读全文