摘要: The Abstract Factory Design Pattern provides a way to encapsulate a group of individual factories that have a common theme without specifying their co 阅读全文
posted @ 2019-05-22 22:15 云霄宇霁 阅读(124) 评论(0) 推荐(0)
摘要: The Observer design pattern defines a one-to-many dependency between objects so that when one object changes states, all its dependents are notified a 阅读全文
posted @ 2019-05-22 21:54 云霄宇霁 阅读(98) 评论(0) 推荐(0)
摘要: The Prototype design pattern specifies the kind of objects to create using a prototypical instance, and create new objects by copying this prototype. 阅读全文
posted @ 2019-05-19 12:09 云霄宇霁 阅读(103) 评论(0) 推荐(0)
摘要: The Factory Method design pattern defines an interface for creating an object , but let subclasses decide which class to instantiate. This pattern let 阅读全文
posted @ 2019-05-19 11:01 云霄宇霁 阅读(90) 评论(0) 推荐(0)
摘要: 代理模式(proxy):为其他对象提供一种代理以控制对这个对象的访问。在某些情况下,一个对象不适合或者不能直接引用另外一个对象,而代理对象可以在客户端和目标对象之间起到中介的作用。 The Proxy design pattern provides a surrogate or placeholde 阅读全文
posted @ 2019-05-19 10:38 云霄宇霁 阅读(107) 评论(0) 推荐(0)
摘要: 1、单一职责原则(Single Responsibility Principle SRP):就一个类而言,应该仅有一个引起它变化的原因。 如果一个类承担的职责过多,就等于把这些职责耦合在一起,一个职责的变化可能会削弱后者抑制这个类完成其他职责的能力。这种耦合会导致脆弱的设计,当变化发生时,设计会遭到 阅读全文
posted @ 2019-05-06 22:47 云霄宇霁 阅读(108) 评论(0) 推荐(0)
摘要: 在Sql server中不仅可以使用SELECT语句查询数据,也可以使用视图来完成查询工作。视图还可以简化数据库操作,提高数据库的安全性。 视图是虚拟的表。使视图成为“虚拟的”而不是“真正”的表的原因是,在视图中看到的数据存储在用于创建视图的表中,而不是存在于视图本身。 视图和查询的区别: 1)、存 阅读全文
posted @ 2018-05-27 21:25 云霄宇霁 阅读(323) 评论(0) 推荐(0)
摘要: 一、创建SharePoint hosted 工程 1、创建承载SharePoint Add-in独立域 首先,确定承载的应用程序的独立域名,可以使用类似这样的域名apps.contoso.com,鉴于众多的域名,可以在DNS中添加一个泛域名解析*.contoso.com,指向SharePoint I 阅读全文
posted @ 2017-06-07 09:57 云霄宇霁 阅读(271) 评论(0) 推荐(0)
摘要: 曾几何时,想起高考,心中还是有一丝丝紧张与不安。明天又开始了一年一度的高考,外面依然下着绵绵的细雨,时而疾驰,时而缓和,好像在诉说,劝慰明天即将步入考场的同学“不要紧张不要惶恐,像我一样的轻柔,滋润着万物......”。 是啊,好像全世界的人都在告诫明天的学子,不要紧张,保持一颗平常心,正常发挥就好 阅读全文
posted @ 2017-06-06 22:32 云霄宇霁 阅读(1931) 评论(11) 推荐(13)
摘要: public class Cryptography { private static readonly Byte[] IV = { 131, 124, 213, 11, 241, 214, 201, 103, 138, 225, 188, 216, 116, 247, 152, 145 }; ... 阅读全文
posted @ 2017-04-04 10:21 云霄宇霁 阅读(177) 评论(0) 推荐(0)