码迷,mamicode.com
首页 >  
搜索关键字:A general system er    ( 53009个结果
C# Copy 文件
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.IO;namespace DirectoryCopy...
分类:其他好文   时间:2014-05-08 20:30:59    阅读次数:381
Java宝典(二)
--String s = "a" + "b" + "c" + "d"; 一共创建了多少个对象?--对于如下代码:String s1 = "a";String s2 = s1 + "b";String s3 = "a" + "b";System.out.println(s2 == "ab"); // ...
分类:编程语言   时间:2014-05-08 20:27:38    阅读次数:326
使用Telerik StyleMananger 改变Silverlight Button样式
Telerik 支持更改以下控件样式 System.Windows.Button System.Windows.ScrollViewer System.Windows.CheckBox System.Windows.TextBox System.Windows.RadioButton Sy...
分类:Web程序   时间:2014-05-07 20:10:14    阅读次数:428
第一个JAVA程序
1:打开"记事本",输入这段代码 (注意大小写)class HelloWorld { public static void main(String args[]) { System.out.println("Hello World"); } } 2:以 He...
分类:编程语言   时间:2014-05-07 19:43:54    阅读次数:367
ios学习记录 day44 UI20 Storyboard 高级可视化编程 + 单例
可视化编程 : 5.0之前 xib 5.0之后 Storyboard注意事项:1.在AppDelegate中不用代码初始化一个window 2.在general 设置 Main Interface(创建的时候自动设置的)weak可以指向 但是没有拥有权 strong有拥有权单例特性:1.唯一性 创建...
分类:移动开发   时间:2014-05-07 19:26:26    阅读次数:1667
SqlCommand.ExecuteScalar 方法
本文来自:http://msdn.microsoft.com/zh-cn/library/system.data.sqlclient.sqlcommand.executescalar(v=vs.100).aspx执行查询,并返回查询所返回的结果集中第一行的第一列。忽略其他列或行。命名空间:Syste...
分类:数据库   时间:2014-05-07 19:18:11    阅读次数:665
XmlSerialization 序列化与反序列化
using System;using System.Collections;using System.Collections.Generic;using System.IO;using System.Linq;using System.Text;using System.Threading.Task...
分类:其他好文   时间:2014-05-07 19:10:55    阅读次数:387
nmea协议
NMEA协议信息类型为:GPGSV:可见卫星信息GPGLL:地理定位信息GPRMC:推荐最小定位信息GPVTG:地面速度信息GPGGA:GPS定位信息 GPGSA:当前卫星信息1、 Global Positioning System Fix Data(GGA)GPS定位信息$GPGGA,,,,,,....
分类:其他好文   时间:2014-05-07 18:31:23    阅读次数:351
tablelayoutpanel 动态调整行列宽度
1 private void SetTableLayout()2 {3 this.tableLayoutPanel1.ColumnStyles[0] = 4 new System.Windows.Forms.Co...
分类:其他好文   时间:2014-05-07 17:43:04    阅读次数:313
关于C#的Main(String[] args)参数输入问题
关于C#的Main(String[] args)参数输入问题指定相关的测试代码 首先,写一个用于测试的关于Main(String[] args)参数输入有关的代码类,如下:using System;public class Hello{ public static void Main(String[...
分类:其他好文   时间:2014-05-06 09:45:12    阅读次数:280
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!