码迷,mamicode.com
首页 >  
搜索关键字:public void __cdecl    ( 122950个结果
在ASP.NET使用javascript的一点小技巧
在ASP.NET使用javascript的一点小技巧 我们在进行ASP.NET开发时,经常会用到一些javascript脚本,比如:  private void Button1_Click(object sender, System.EventArgs e)  {  Response.Write( "alert('OK');") ;  } 经常是重复的书写这些脚本,如果我们能做成一个相...
分类:编程语言   时间:2014-05-09 21:12:11    阅读次数:268
Sql 注入 学习笔记
以下是MSDN Magazine 里面的一段文章:http://msdn.microsoft.com/zh-cn/magazine/cc163523.aspx我很好奇这样到底能不能够注入SQL,所以我建了个 console 程序 static void Main(string[] ar...
分类:数据库   时间:2014-05-09 20:24:06    阅读次数:291
[学习总结]5、Android的ViewGroup中事件的传递机制(二)
下面是第一篇的连接Android的ViewGroup中事件的传递机制(一)关于onInterceptTouchEvent和onTouchEvent的详细解释。 1 public class MainActivity extends Activity { 2 Group1 group1; 3 ...
分类:移动开发   时间:2014-05-09 20:21:43    阅读次数:379
UIAlertView
http://blog.csdn.net/developer_zhang/article/details/88258221.普通弹框 - (void)viewDidLoad { [super viewDidLoad]; UIAlertView *alertView = [[UIAlertView.....
分类:其他好文   时间:2014-05-09 20:20:20    阅读次数:323
Rabin Karp 算法实战
关键字Rabin karp 算法,C++,ubuntu 14.04, linux, big integer, gmp为了计算冗余度, 我写出了如下算法void HandleAMission(const char *srcFileName, FILE *output, int blockSize, i...
分类:其他好文   时间:2014-05-09 20:12:25    阅读次数:270
Unity插件iTween的使用(例子)
using UnityEngine;using System.Collections;public class MoveSample : MonoBehaviour{ void Start(){ //iTween.MoveBy(gameObject, iTween.Hash("x", 2, "e.....
分类:其他好文   时间:2014-05-09 20:11:02    阅读次数:455
.net IAsyncResult 异步操作
//定义一个委托 public delegate int DoSomething(int count); //BeginInvoke 的回调函数 private static void Execute(IAsyncResult async) ...
分类:Web程序   时间:2014-05-09 19:51:27    阅读次数:422
java选择排序
/** * Created by rabbit on 2014-5-9. */ class ArrayTest2 { public static void SelectSort(int [] arr) //定义选择排序的方法 { for (int x=0;x<arr.length;x++) { .....
分类:编程语言   时间:2014-05-09 19:49:37    阅读次数:236
Android移动view动画问题--停在动画的最后一帧(转)
Android写动画效果不是一般的麻烦,网上找了好久,终于解决了动画的问题,总结记录以共勉。仅以水平方向移动效果做说明,垂直方向类似。public void slideview(final float p1, final float p2) { TranslateAnimation anima...
分类:移动开发   时间:2014-05-09 19:48:01    阅读次数:305
获取文件的MD5码(C#)
using System;using System.IO;using System.Security.Cryptography;using System.Text;namespace Test{ public class MD5Code { /// /// ...
分类:其他好文   时间:2014-05-09 19:43:27    阅读次数:277
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!