上一页 1 ··· 46 47 48 49 50 51 52 53 54 ··· 101 下一页
摘要: C# 2.0 泛型(Generics) 泛型是CLR 2.0中引入的最重要的新特性,使得可以在类、方法中对使用的类型进行参数化。 例如,这里定义了一个泛型类: class MyCollection<T> { T variable1; private void Add(T param){ } } 使用 阅读全文
posted @ 2018-06-28 17:18 龙骑科技 阅读(1496) 评论(0) 推荐(1)
摘要: 阅读全文
posted @ 2018-06-28 15:10 龙骑科技 阅读(355) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2018-06-27 10:41 龙骑科技 阅读(123) 评论(0) 推荐(0)
摘要: Pointer BasicsFor every value type or pointer type V, there is a corresponding pointer type V*. Apointer instance holds the address of a variable. Poi 阅读全文
posted @ 2018-06-27 10:23 龙骑科技 阅读(136) 评论(0) 推荐(0)
摘要: 最近做视频直播模块,在网上也看到很多大神写的代码,写的都不错,但不是我想要的,有的可能比较老,不支持https协议,有的又将直播端和显示端放在一个程序中,不利于我使用,则本篇着重添加了https协议(若改http也很简单server.js内可设置),并将视频直播这块代码抽出为两块代码,分别实现直播和 阅读全文
posted @ 2018-06-26 16:05 龙骑科技 阅读(2487) 评论(0) 推荐(0)
摘要: Extjs 中的按钮元素 { xtype: 'buttongroup', title: '打印', items: [ me.tsbDel = Ext.create('Ext.button.Button', { text: '打印123', iconCls: 'tool_print', scale: 阅读全文
posted @ 2018-06-13 17:32 龙骑科技 阅读(597) 评论(0) 推荐(0)
摘要: Extjs Window用法详解 今天我们来介绍一下Extjs中一个常用的控件Window。Window的作用是在页面中创建一个窗口,这个窗口作为容器,可以在它里面加入grid、form等控件,从而来实现更加复杂的界面逻辑。 本文的示例代码适用于Extjs 4.x和Extjs 5.x,在Extjs 阅读全文
posted @ 2018-06-13 17:06 龙骑科技 阅读(779) 评论(0) 推荐(0)
摘要: Ext.util.Format.date与Ext.Date.format区别, 转换时间戳 Ext.util.Format.date与Ext.Date.format区别, 转换时间戳 2016年07月22日 16:13:49 阅读数:4245 2016年07月22日 16:13:49 阅读数:424 阅读全文
posted @ 2018-06-13 15:11 龙骑科技 阅读(1327) 评论(0) 推荐(0)
摘要: Ext.util.Format.date Ext.util.Format.date 如下这段简单的代码: 如下这段简单的代码: var d = new Date(value.time); var s = Ext.util.Format.date(d, 'Y-m-d H:m:s'); return s 阅读全文
posted @ 2018-06-13 15:10 龙骑科技 阅读(997) 评论(0) 推荐(0)
摘要: namespace www{ public abstract class SingletonManager<T> : ISingletonManager where T : class, ISingletonManager, new() { public SingletonManager(); pu 阅读全文
posted @ 2018-06-05 17:35 龙骑科技 阅读(520) 评论(0) 推荐(0)
上一页 1 ··· 46 47 48 49 50 51 52 53 54 ··· 101 下一页