码迷,mamicode.com
首页 >  
搜索关键字:using    ( 53562个结果
利用GetPrivateProfileString读取ini文件的字段
//INIClass读取类using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Runtime.InteropServices;using System.IO;us...
分类:其他好文   时间:2015-12-20 19:24:39    阅读次数:139
(转)txt读写 操作封装
[code]csharpcode:using UnityEngine;using System.Collections.Generic;using System.IO;using System.Text;using System;public class TextCreatWrite : MonoB...
分类:其他好文   时间:2015-12-20 19:14:22    阅读次数:199
MVC4 下DropDownList使用方法
1、下面代码包含了三种绑定DropDownList的方法 using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace Supe...
分类:Web程序   时间:2015-12-20 19:12:36    阅读次数:258
AuthorizeAttribute示例
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace AuthTest.Models { ...
分类:其他好文   时间:2015-12-20 19:02:48    阅读次数:200
BZOJ 1010 dp 斜率优化
题意: 给一段数列,要求分成若干段,有一个公式可算每段的花费,求整段数列最小花费。题意很裸,不难得出状态转移方程:dp[i]=min{dp[j]+(sum[i]-sum[j-1]+i-j-l)^2}(j11 #include12 using namespace std;13 typedef long...
分类:其他好文   时间:2015-12-20 17:25:15    阅读次数:142
C#创建桌面快捷方式
添加引用 (com->Windows Script Host Object Model)/*说明:快捷方式创建时如果存在同名的快捷方式则会覆盖之前的快捷方式*/using IWshRuntimeLibrary; private static void CreateDesktopLnk(...
分类:Windows程序   时间:2015-12-20 17:23:18    阅读次数:231
笔记<c# 调用DLL解密密文>
using DTcms.Common;using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace Decrypt{ ....
分类:Windows程序   时间:2015-12-20 14:38:25    阅读次数:235
hdu 4632 区间DP
1 #include 2 #include 3 #include 4 using namespace std; 5 #define mod 10007 6 7 char str[1005]; 8 int dp[1005][1005]; 9 10 int main()11 {12 int ...
分类:其他好文   时间:2015-12-20 14:38:00    阅读次数:162
Codeforces Round #332 (Div. 2)
题A题意:有三个地点,家h,超市s1和s2,然后给你三者之间的距离,然后问你从家遍历s1和s2之后又回到家的最短距离是多少?题解:就四种情况。。。。手动模拟很快出来的。 1 /*zhen hao*/ 2 #include 3 using namespace std; 4 5 typedef lo.....
分类:其他好文   时间:2015-12-20 14:36:56    阅读次数:180
ASP.NET Global 全局事件处理
添加Global文件,名字不要改Global类说明:using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Web;using System.Web.Security;u...
分类:Web程序   时间:2015-12-20 14:26:47    阅读次数:142
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!