码迷,mamicode.com
首页 >  
搜索关键字:using    ( 53562个结果
web Service 接口对xml数据处理
using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Services;using System.Xml;using IM.BLL;using IM.Mode
分类:Web程序   时间:2016-03-21 19:40:29    阅读次数:216
c#连接oracle的几种方式
一:通过System.Data.OracleClient(需要安装Oracle客户端并配置tnsnames.ora)1. 添加命名空间System.Data.OracleClient引用2. using System.Data.OracleClient;3. string connString =
分类:数据库   时间:2016-03-21 18:27:04    阅读次数:186
经典算法——字符串的所有组合
#include #include #include using namespace std; //从头扫描字符串得到第一个字符,针对第一个字符,有两种选择 //把这个字符放到组合中去,接下来我们需要在剩下的n-1个字符中选取m-1个字符; //如果不把这个字符放到组合中去,则需要在剩下的n-1个字符中选取m个字符 void Combination(char* string, int numb...
分类:编程语言   时间:2016-03-21 12:29:12    阅读次数:180
C++中利用数组对字符进行除重和排序
题目:随机输入一组字符,对这组字符进行除重和排序输出, 例如:输入aafddbc 输出:abcdf 程序: #include "stdafx.h"#include<iostream>using namespace std; void func1(char str[256], int len){ in
分类:编程语言   时间:2016-03-21 12:26:00    阅读次数:184
C#日期时间格式化
日期转化一为了达到不同的显示效果有时,我们需要对时间进行转化,默认格式为:2007-01-03 14:33:34 ,要转化为其他格式,要用到DateTime.ToString的方法(String, IFormatProvider),如下所示:using System;using System.Glo
分类:Windows程序   时间:2016-03-21 11:52:41    阅读次数:273
[Angular 2] Using ng-for to repeat template elements
This lesson covers Angular 2’s version of looping through data in your templates: ng-for. It’s conceptually the same as Angular 1’s ng-repeat, but you
分类:其他好文   时间:2016-03-21 07:03:53    阅读次数:167
[Angular 2] Using ng-model for two-way binding
Two-way binding still exists in Angular 2 and ng-model makes it simple. The syntax is a combination of the [input] and (output) syntax to represent th
分类:其他好文   时间:2016-03-21 07:02:54    阅读次数:127
opencv 鼠标交互
最近在系统的学习opencv的基础知识; 之前没有去系统学习opencv基础,在用opencv的的时候会经常遇到各种问题,很有必要系统学习基础; 好的基础会让后面的学习 和实践 更加顺利; 下面贴出 opencv 鼠标交互的 代码 #include <opencv2/opencv.hpp>using
分类:其他好文   时间:2016-03-21 01:40:13    阅读次数:165
设计模式中常用类图
一、关联关系 企鹅与气候关联,企鹅需要"知道"气候的变化,需要了解气候规律。当一个类"知道"另一个类时,可以用关联(association),用实线箭头表示。 class Penguin { private Climate climate; } using System; using System....
分类:其他好文   时间:2016-03-20 19:37:05    阅读次数:136
读程序作业(第三周)
using System; using System.Collections.Generic; using System.Text; namespace FindTheNumber { class Program { static void Main(string[] args) { int []
分类:其他好文   时间:2016-03-20 17:57:22    阅读次数:120
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!