上一页 1 2 3 4 5 6 7 8 9 10 ··· 15 下一页

C# 语言特性(继承)

摘要: (1)只能继承1个基类, 可继承多个接口 阅读全文
posted @ 2012-07-13 16:39 imihiro 阅读(145) 评论(0) 推荐(0) 编辑

AE Contour和ContourAsPolyline

摘要: 转自http://www.cnblogs.com/cglNet/archive/2011/03/03/1970061.html感谢cglNet分享(1)ISurfaceOp.Contour 根据DEM生成等高线图层: private void button1_Click(object sender, EventArgs e) { //得到Raster ILayer tLayer=this.axMapControl1.get_Layer(0); IRasterLayer tRasterLayer=(IRa... 阅读全文
posted @ 2012-07-13 15:06 imihiro 阅读(1004) 评论(0) 推荐(1) 编辑

MVC EF 建立表关联, 关联查询实现

摘要: 例1:>Model中体现1对多>DbContext两个表都已声明>Controller中使用Include("表名")即可//效果示意:例2:显示Album表字段 关联到 Genre和Artist字段 阅读全文
posted @ 2012-07-13 11:29 imihiro 阅读(20963) 评论(2) 推荐(2) 编辑

C# Keyword(base,protected, override,....)

摘要: (1)protected The protected keyword is a member access modifier. A protected member is accessible from within the class in which it is declared, and from within any class derived from the class that declared this member. //proteted修饰的方法 (本类 和 派生类 内部可访问)class A { protected int x = 123;}class B : A {.. 阅读全文
posted @ 2012-07-13 08:51 imihiro 阅读(823) 评论(0) 推荐(0) 编辑

MVC Music Sotre -2

摘要: 七、使用EF快速完成CRUD功能(1)新建Artist,Genre,Album3个类,用属性显示3张表的关联(2)添加DbContext类(对应数据库),添加DbSet<Model>(对应表)>画出数据库设计图(表、表间关系),手动、UML、SQL的工具均可>添加Album、Genre、Artist类,和DbContext类 public class DbMusicContext:DbContext //相当于数据库 { public DbSet<Album> Albums { get; set; } //Album表 public DbSet<Gen 阅读全文
posted @ 2012-07-13 08:22 imihiro 阅读(2429) 评论(0) 推荐(0) 编辑

MVC Music Store

摘要: 一、Url映射到Controller ActionResult(Method)(1)添加StoreController public class StoreController : Controller { // // GET: /Store/ //public ActionResult Index() //{ // return View(); //} public string Index(string name) //... 阅读全文
posted @ 2012-07-12 21:29 imihiro 阅读(1105) 评论(0) 推荐(0) 编辑

ArcObject GP 所有分析

摘要: You can execute any ArcToolbox tool or model via ArcObjects using the Geoprocessing library: http://edndoc.esri.com/arcobjects/9.2/CPP_VB6_VBA_VCPP_Doc/COM/gp/Using%20Geoprocessing%20Tools%20in%20VB.pdf 阅读全文
posted @ 2012-07-12 10:16 imihiro 阅读(450) 评论(0) 推荐(0) 编辑

五大浏览器对 HTML5 CSS3的支持 (2012-07)

摘要: CSFOI Chrome 和Safari 的支持最好。 (Safari仅适用于起初仅用于 Mac OS系统,现已有Win版本) FireFox 和 Opera次之 IE9 正在最后(完善中) 阅读全文
posted @ 2012-07-12 09:06 imihiro 阅读(151) 评论(0) 推荐(0) 编辑

泥壁鲁(80后 Kevin Yang from ChengDu) 银河帝国 海岛帝国 2012-4月 北美销售额 114w$ IOS(国内前10)

摘要: http://tech.ifeng.com/mi/detail_2012_07/11/15937438_0.shtml//全球: 苹果 AppStore的年销售额是30Y$ 月销售额2.5Y$。 若Com的销售额能到1kw $,近 No.1 阅读全文
posted @ 2012-07-11 21:42 imihiro 阅读(191) 评论(0) 推荐(0) 编辑

ArcGIS Surface Analysis-->Contour Error

摘要: //解决方式: 在ArcCatlog中右键Raster-->Calculate Statistics 阅读全文
posted @ 2012-07-11 09:48 imihiro 阅读(789) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 15 下一页