码迷,mamicode.com
首页 >  
搜索关键字:using    ( 53562个结果
.net 定时执行 windows 服务
1.新建项目 --》 Windows 服务 2.Service1.cs代码 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Dia
分类:Windows程序   时间:2016-03-07 18:53:22    阅读次数:244
postgresql Delete+ join
using tablename as alias DELETE FROM tv_episodes USING tv_episodes AS ed LEFT OUTER JOIN data AS nd ON ed.file_name = nd.file_name AND ed.path = nd.pa
分类:数据库   时间:2016-03-07 16:57:38    阅读次数:265
Open Packaging Conventions specification(开放式打包约定 (OPC) 规范)
Open Packaging Conventions Fundamentals Introduces the OPC concepts that are required for using Packaging APIs. This topic contains the following sect
分类:其他好文   时间:2016-03-07 16:49:07    阅读次数:421
Oracle 创建dblink
创建dblink语法: create database link link名称 connect to 对方数据库用户名 identified by 对方数据库用户密码 using '对方数据库ip:端口/实例名'; 比如: create database link linkgzp connext t
分类:数据库   时间:2016-03-07 16:48:03    阅读次数:217
最小生成树 - 克鲁斯卡尔 - 并查集 - 边稀疏 - O(E * logE)
#define _CRT_SECURE_NO_WARNINGS #include<cstdio> #include<cstring> #include<algorithm> using namespace std; #define N 100005 int p[N]; struct Edge { i
分类:其他好文   时间:2016-03-07 16:39:43    阅读次数:151
C#检测是否联网
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Runtime.InteropServices; namespace LocalApp.Console
分类:Windows程序   时间:2016-03-07 13:31:24    阅读次数:171
C#第四节课
分值语句(1) using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; namespace fenzhiyuju1{ class P
分类:Windows程序   时间:2016-03-07 12:12:39    阅读次数:300
3sum
#include #include #include #include #include using namespace std;vector> threeSum(vector& nums) { sort(nums.begin(), nums.end()); int len = nums.size(...
分类:其他好文   时间:2016-03-07 12:02:40    阅读次数:141
C#使用SOAP调用Web Service
程序代码 using System;using System.IO;using System.Net;using System.Text;namespace ConsoleApplication1{ class Program { static void Main(string[] args) {
分类:Windows程序   时间:2016-03-07 11:51:39    阅读次数:310
虚函数
一、静态联编与动态联编 看段代码: 1 #include <iostream> 2 using namespace std; 3 4 const double PI=3.1415; 5 6 class point 7 { 8 private: 9 int x,y; 10 11 public: 12
分类:其他好文   时间:2016-03-07 11:44:55    阅读次数:223
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!