摘要:
Topshelf ConfigurationWhile the Quickstart gives you enough to get going, there are many more features available in Topshelf. The following details th... 阅读全文
摘要:
How to license Aspose.Total for .NET productsAdd "License.cs" [C#] OR "License.vb" [Visual Basic] to your application License.csCode:using System;usin... 阅读全文
摘要:
Behaviors in WCF are so stinking useful, and once you get past the basics of WCF they're arguably a necessity. Microsoft has saved itself from hundred... 阅读全文
摘要:
There are multiple ways to do error handling in WCF as listed by Pedram Rezaei Blog.The default way that WCF allows errorsmessage to display is by set... 阅读全文
摘要:
Add reference to log4net.dll to our console service host project (our application entry point)Add the following line to the above project's AssemblyIn... 阅读全文
摘要:
http://blog.csdn.net/wangjia184/article/details/6990098http://www.openssl.org/在本地测试好好的代码部署到生产环境后,遇到OpenSSL.Net不能加载的错误。Could not load file or assembly ... 阅读全文
摘要:
EMA它的定义是 Y=[2*X+(N-1)*Y']/(N+1) Y'是上一个周期的计算值。这样的函数是一个递归函数,不断的调用前一个周期的值来参加计算的。我们为了加快计算的速度,没有采用递归的方式。实现的EMA是这样的 public static List EMA(this List inp... 阅读全文