码迷,mamicode.com
首页 >  
搜索关键字:system    ( 49231个结果
类型“System.Net.Http.HttpResponseMessage”在未被引用的程序集中定
<b> 编译器错误消息: </b>CS0012: 类型“System.Net.Http.HttpResponseMessage”在未被引用的程序集中定义。必须添加对程序集“System.Net.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken...
分类:Web程序   时间:2015-08-18 21:36:37    阅读次数:3629
SqlFunctions 可以在EF种调用sqlserver的函数
在EF5环境下,首先添加EF环境,在引用中添加Syste.Data.Entity,再添加命名空间using System.Data.Objects.SqlClient;然后写一个控制器测试 1 public ActionResult Index() 2 { 3 ...
分类:数据库   时间:2015-08-18 21:22:04    阅读次数:166
[Powershell] Convert Chinese character to pinying
Found a new job in Beijing, the company was using cloud stuff for infrastructure IT systems, like mail system, mobile messaging, IM. The company is go...
分类:系统相关   时间:2015-08-18 21:12:37    阅读次数:182
求最大连续bit数
import java.util.Scanner; public class GetContinuous1 { public static void main(String[] args) { Scanner scan = new Scanner(System.in); byte num = scan.nextByte(); String str = Integer.to...
分类:其他好文   时间:2015-08-18 19:35:08    阅读次数:96
线程Thread类和Runnable接口
调用start(),则编译器开始执行run();Tread()类:public class Test extends Thread{ private int tickets = 100; public void run(){ while(tickets>0){ System.out.println("卖出第"+tickets--+"票");...
分类:编程语言   时间:2015-08-18 19:32:11    阅读次数:127
统计大写字母个数
import java.util.Scanner; public class Main{ public static void main(String[]args){ Scanner scanner = new Scanner(System.in); String s=scanner.nextLine(); if (s.isEmpty()) { System.out.println(0); }e...
分类:其他好文   时间:2015-08-18 19:29:31    阅读次数:96
MVC报错,写入字典的类型为****,但字典需要的类型为****
错误如下:Server Error in '/' Application.传入字典的模型项的类型为“System.Collections.Generic.List`1[MvcTest.Models.Score]”,但此字典需要类型“MvcTest.Models.Score”的模型项。出现以上错误的原...
分类:Web程序   时间:2015-08-18 19:12:00    阅读次数:96
unity批量获取物体组件修改值,拓展子物体查询
using UnityEngine;using System.Collections;public class Game : MonoBehaviour { // Use this for initialization void Start () { FindMateria...
分类:编程语言   时间:2015-08-18 18:59:21    阅读次数:170
获取TextView中的url并设置点击事件
调用安卓默认的浏览器方法:Intent intent = new Intent(Intent.ACTION_VIEW);System.out.println("跳转到百度"); intent.setData(Uri.parse("http://www.baidu.com"))...
分类:Web程序   时间:2015-08-18 18:19:39    阅读次数:214
System.Data.DbType的字符串和数据库中字符串类型对应关系
前两天项目中因为历史原因数据库中的一个字段是varchar类型,在做SQL参数化处理时候默认都是DbType.String,免得查询出现数据转换,于是做类型一致,搜了下对应关系还没找到,只好自己打开SQL SERVER Profiler跟踪了下,对应如下:DbType.String——>nvar.....
分类:数据库   时间:2015-08-18 18:03:55    阅读次数:142
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!