• 博客园logo
  • 会员
  • 周边
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • YouClaw
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






HanselUsys

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理

2020年1月2日

笔记_VS常用快捷键
摘要: Mark:后续继续补充 Ctrl+Shift+空格 参数高亮显示Ctrl+Shift+B=Build F5=RunCtrl+Shift+F5 = ReRunCtrl+F5F11 单步F10 单句F9 断点 F12 转到定义Shift+F12 查找所有引用 Shift+Alt+Enter 全屏/退出全 阅读全文
posted @ 2020-01-02 21:30 HanselUsys 阅读(124) 评论(0) 推荐(0)
 
笔记_接口隔离原则_显示实现接口
摘要: 显示实现接口的意义:在于一般情况下隐藏该接口的方法,在特别的情况下才予以显示,调用。实际项目中的例子:暂无,后续补充。namespace Test { /*接口显示实现*/ public class Program { static void Main(string[] args) { IKille 阅读全文
posted @ 2020-01-02 20:11 HanselUsys 阅读(96) 评论(0) 推荐(0)
 
笔记_接口隔离原则_胖接口
摘要: namespace Test { /*胖接口示例*/ public class Program { static void Main(string[] args) { int[] nums1 = { 1, 2,3, 4, 5 }; ArrayList nums2 = new ArrayList { 阅读全文
posted @ 2020-01-02 19:47 HanselUsys 阅读(220) 评论(0) 推荐(0)