- 博客(11)
- 收藏
- 关注
翻译 github上的一个html5俄罗斯方块小游戏做了些简化
html 俄罗斯方块 --> --> html, body { background: #3b3d3b; padding: 0; margin: 0; font-family: "Play", "Helvetica Neue", "Arial", sa
2016-02-25 10:23:34
5563
转载 ToBase64String 为什么会有==
用ToBase64String方法可以在不丢失数据的情况下将字节数组转成字符串在ToBase64String方法中,会对字节数组中的连续三字节进行一次编码,编码得的字符串长度为4位,而且得出来的4位的字符串里面的字符肯定是由大小写字母、数字(0~9)、+、/组成,例如有一个字节数组{212,36,25,23,45,65},ToBase64String方法会将这个数组分成2个数组,分别为{2
2016-02-24 14:06:44
1581
转载 C# ClipboardHelper (系统复制粘贴辅助工具)
There are multiple ways of doing this but this is my favorite and works for me. I've created a class library so that others may add the project and include the DLL then simply call on it and use it wh
2016-02-23 10:40:26
2526
原创 C# 10进制和64进制相互转换
public string IntToi64(long xx) { string a = ""; while(xx>=1) { int index = Convert.ToInt16(xx - (xx / 64) * 64); a = Base64
2016-02-22 10:50:49
2806
原创 C# 3D到2D投射
public class iGraphic { public class i3D { public class iVector { public double x; public double y; public
2016-02-19 14:12:40
857
转载 404page (一个有趣的404页面)
404 - Page not found ::-moz-selection { background: #b3d4fc;
2016-02-18 15:03:50
2979
1
转载 C# Load DLL From Embedded Resource(把exe和dll捆绑起来)
IntroductionIn an ordinary way, when we added a reference of a custom built or third party DLL, it will be distributed along with our main EXE application at the same folder. If the DLL is not e
2016-02-17 15:29:20
2611
1
原创 C# HASH算法生成字符串
public class SHAHASH { public static string GetShaHashXXX(string Password, int t) { List codes = new List(); string current = Password; stri
2016-01-29 15:00:46
1646
原创 C# 斐波那契数列算法
public static int[] Fibonacci(int S, int E) { Func fib = null; fib = n => n > 1 ? fib(n - 1) + fib(n - 2) : n; int start = S; int end = E;
2016-01-29 13:01:35
710
原创 测试一下
INFINITE WALL TECHNOLOGY MAKE IDEA COME TRUE INFINITE WALL TECHNOLOGY MAKE IDEA COME TRUE INFINITE WALL TECHNOLOGY MAKE IDEA COME TRUE..................
2016-01-28 16:41:55
277
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人