03 2014 档案
发送邮件
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Net.Mail;//发送邮箱using System.Text;using System.Threading.Tasks;namespace ConsoleApplication1{ class Program { static void Main(string[] args) { MailMessage mm = new MailMessage();//信 ... 阅读全文
posted @ 2014-03-09 12:22 翻滚的咸鱼 阅读(221) 评论(0) 推荐(0)
反射辅助类
摘要:数据库三层一般的都是一层依赖一层的,这样依赖关系提高对后期开发扩展难免不变,而解决的方法也肯定不会只有一个的,在这里说的是利用反射来降低依赖性,提高扩展率。namespace Student.DAL{ public class Helper { public static ... 阅读全文
posted @ 2014-03-07 10:11 翻滚的咸鱼 阅读(294) 评论(0) 推荐(1)
ContentProvider实现流程
摘要:个人记录 1 public class DataBaseContentProvider extends ContentProvider { 2 3 private SQLiteOpenHelper mSQLiteOpenHelper; 4 5 private SQLit... 阅读全文
posted @ 2014-03-05 09:34 翻滚的咸鱼 阅读(427) 评论(0) 推荐(0)