-
email
电子邮件自动发送,设置好相关配置,在指定的时间将邮件发送到指定邮箱(E-mail sent automatically configure related, at a specified time to send the message to the specified mailbox)
- 2016-06-30 16:08:46下载
- 积分:1
-
EedPointDetectpaper
端点检测论文:
基于LPCC、MFCC,基于双门限的端点检测等等(Endpoint detection paper: Based on the LPCC, MFCC, dual-threshold-based endpoint detection, etc.)
- 2010-11-17 15:36:39下载
- 积分:1
-
单片机课设报告
这是自己编写的关于单片机课程设计的报告,能够实现温传读取、显示、报警、等功能(This is a report on the course design of single-chip computer, which can realize the functions of reading, displaying, alarming and so on.)
- 2020-06-24 07:40:01下载
- 积分:1
-
基于c#实现的简单通讯录
这个是很基础的用VS2010开发的c#源码,采用三层架构实现一个简易的通讯录管理,采用Microsoft Office Access实现数据的存储,能够实现增、删、查、改。
- 2023-05-12 18:50:03下载
- 积分:1
-
src
SIFT代码,多用于图像拼接,匹配精度高(sciences code used for image stitching, matching high accuracy)
- 2021-04-11 22:08:57下载
- 积分:1
-
PIC18f97J60TCPIP
用PIC18F97J60网络单片机开发板测试程序,对雪PIC网络单片机的非常实用(Development board with PIC18F97J60 microcontroller network test program, the network of snow PIC microcontroller is very useful)
- 2010-09-28 15:22:51下载
- 积分:1
-
SY_003
说明: C51系列单片机,用C语言编写,使扬声器发声(C51 series of microcontrollers, C language, so that the speaker sound)
- 2011-03-16 17:11:28下载
- 积分:1
-
EF Code First简介及一个入门级实例
一、EF Code First简介 EntityFramework 代码优先 二、EF Code First第一个简单实例 1、开发环境及数据库说明 开发环境:Visual Studio 2010 Ultimate sp1 Sql Server 2008 R2 数据库:Northwind 2、实例代码结构 结构说明: App:控制台应用程序 Data:数据访问 Domain:实体类 3、安装Entity Framework 在Visual Studio编辑器中点击Tools -> Library Package Manager -> Package Manager Console,在Package Manager Console窗口中执行下面语句,安装最新版Entity Framework。 PM> Install-Package EntityFramework App层和Data层分别添加对EntityFramework的引用: 在App层安装EntityFramework之后,将自动添加App.config和packages.config文件。 App.config配置Entity Framework版本信息及数据库连接信息,修改其中数据连接信息以适应本地实际环境。 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 packages.config现实当前项目使用的package: 1 2 3 4 4、实例代码 Domain中Category.cs 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace Northwind.Domain.Entities 7 { 8 public class Category 9 { 10 /// 11 /// 分类ID 12 /// 13 public int CategoryID { get; set; } 14 15 /// 16 /// 分类名称 17 /// 18 public string CategoryName { get; set; } 19 } 20 } Data中NorthwindContext.cs 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 using System.Data.Entity; 7 8 using Northwind.Domain.Entities; 9 10 namespace Northwind.Data 11 { 12 public class NorthwindContext : DbContext 13 { 14 public DbSet Categories { get; set; } 15 } 16 } App中Program.cs 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 using Northwind.Data; 7 using Northwind.Domain.Entities; 8 9 namespace Northwind.App 10 { 11 class Program 12 { 13 static void Main(string[] args) 14 { 15 Category c = new Category() { CategoryName = "电子数码" }; 16 17 using (NorthwindContext db = new NorthwindContext()) 18 { 19 db.Categories.Add(c); 20 db.SaveChanges(); 21 } 22 23 Console.WriteLine("Finish"); 24 Console.ReadKey(); 25 } 26 } 27 } 5、运行说明 由于在上面的数据库连接字符串中并未包含指定的数据库名称,运行成功之后,将在本地数据引擎中创建如下数据库和表: 数据库名称:Northwind.Data.NorthwindContext 表名称:Categories 6、示例代码附件
- 2014-04-22下载
- 积分:1
-
数据结构:表达式计算
c语言用堆栈实现表达式计算,数据结构练习题。
- 2022-02-15 15:07:56下载
- 积分:1
-
IB智慧公交
说明: IB智慧公交系统是一款为公交驾驶员及调度员等开发的一款系统,驾驶员具有对公交的线路、站点、班次等信息的查询功能;调度员具有对公交的线路、站点、班次、排班等信息的修改、增加、删除、查询功能。(IB Intelligent Bus System is a system developed for bus drivers and dispatchers. The driver has the function of inquiring the information of bus routes, stations, shifts, etc. The dispatcher has the function of modifying, adding, deleting and inquiring the information of bus routes, stations, shifts and scheduling.)
- 2020-07-01 18:00:02下载
- 积分:1