The properties configuration element can be used to externalize the configuration values into a properties file and use the properties' key names as p
分类:
其他好文 时间:
2016-02-29 16:00:11
阅读次数:
125
using UnityEngine; using System.Collections; using UnityEngine.UI; /// <summary> /// User interface alpha ctrl. /// 统一控制图片的透明度 /// </summary> public c
分类:
其他好文 时间:
2016-02-29 14:19:03
阅读次数:
166
常用的处理窗体的API函数如下(注意:API函数必须放在窗体中...): 使用C#语言,要引用DllImport,必须要添加using System.Runtime.InteropServices命名空间 (1)获得当前前台窗体句柄 [DllImport("user32.dll", CharSet
获取接口的方法 public static T GetProvider<T>() { using (var kernal = new StandardKernel(new BusinessBinding())) { var provider = kernal.Get<T>(); return pro
分类:
其他好文 时间:
2016-02-29 12:43:59
阅读次数:
212
1 #include<cstdio> 2 #include<iostream> 3 using namespace std; 4 int T,a[100],n; 5 int main() 6 { 7 scanf("%d",&T); 8 for(;T;T--) 9 { 10 int a1=0,kg=0
分类:
其他好文 时间:
2016-02-29 12:40:01
阅读次数:
158
1 #include<iostream> 2 #include<cstdio> 3 #include<cmath> 4 #define eps 1e-6 5 #define M 15 6 using namespace std; 7 double a[M],b[M][M]; 8 int n; 9 i
分类:
Web程序 时间:
2016-02-29 12:31:34
阅读次数:
153
using System; using System.Data; using System.Data.Common; using System.Configuration; using System.Text; using System.Collections.Generic; using Syst
分类:
其他好文 时间:
2016-02-29 12:27:48
阅读次数:
200
http://acm.hdu.edu.cn/showproblem.php?pid=1083 二分图匹配用得很多 这道题只需要简化的二分匹配 #include<iostream> #include<cstdio> #include<cstring> #define maxm 410 using na
分类:
其他好文 时间:
2016-02-29 12:10:35
阅读次数:
152
#include "stdio.h"#include "conio.h"#include "stdafx.h"#include <iostream>using namespace std; void upper(char* s, char* us){ while(*s != '\0') { if(*
分类:
其他好文 时间:
2016-02-29 10:42:30
阅读次数:
145
#include "stdio.h"#include "conio.h"#include "stdafx.h"#include <iostream>using namespace std;struct stu{ char name[20]; char sex; int no; int age; st
分类:
其他好文 时间:
2016-02-29 10:39:10
阅读次数:
151