Autofac自动注入是通过名称约定来实现依赖注入 ps:本demo接口层都以“I”开头,以“Service”结尾。服务层实现都以“Service”结尾。 为什么要实现自动注入 大多时候,我们都是 以下方式进行依赖注入 public IServiceProvider ConfigureService ...
分类:
Web程序 时间:
2019-12-03 23:45:07
阅读次数:
126
public static class A { private static readonly MethodInfo GetServiceInfo; public static IApplicationBuilder My_UseStaticFiles(this IApplicationBuilde ...
分类:
Web程序 时间:
2019-11-30 11:15:56
阅读次数:
119
Assembly:封装程序集信息,可以动态加载程序集 获取Assembly的几种方式: 1、var ass1 = Assembly.Load("ClassLibrary1");//项目中已引用此程序集,可以使用这种方法 2、var ass2 = Assembly.LoadFrom("c://xxxx ...
分类:
Web程序 时间:
2019-11-30 09:23:57
阅读次数:
89
一、 使用readonly而不是const const是编译时常量,readonly是运行时常量。如果引用了一个库中的const常量,则在更新了程序集,但应用程序没有重新编译时,运行结果会出错 如程序集assembly.dll中有如下声明 在ConsoleApp.exe中调用。在正常编译的情况下是没 ...
一、 hutools 依赖 centos7 <dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-all</artifactId> <version>4.5.7</version> </dependency> FileUtil.co ...
分类:
移动开发 时间:
2019-11-25 11:51:27
阅读次数:
150
```assembly
.model small
;递归fib,使用压缩BCD码,小端派
.data y1 byte 6 dup(0) y2 byte 6 dup(0) vis byte 1,1,1,61 dup(0) ;便于调试 num byte 6 dup(0),1,5 dup(0),1, 5 ... ...
分类:
其他好文 时间:
2019-11-25 09:36:16
阅读次数:
102
最近有个小项目要求用wpf实现显示摄像头画面,并且能拍照,标注,切换画面等等。 看了一下wpf有个自带的库WPFMediaKit.dll,里面有个摄像头控件VideoCaptureElement ,好吧,就用它了 1、能拍照能书写的话,就是在摄像头控件上面套一个InkCanvas了,这个写成一个自定 ...
var assemblies = new List<Assembly>() { typeof(OEAppHost).Assembly }; var types = assemblies.SelectMany(x => x.GetTypes()) .Where(x => (x.GetInterface ...
分类:
其他好文 时间:
2019-11-19 15:32:02
阅读次数:
68
Type helloType = typeof(Hello); //Hello是一个接口 List<Type> types = new List<Type>(); //遍历程序集 foreach (var assembly in AppDomain.CurrentDomain.GetAssembli ...
tar xf dubbo-monitor-simple-2.8.4-assembly.tar.gz cd dubbo-monitor-simple-2.8.4 vi conf/dubbo.properties dubbo.container=log4j,spring,registry,jettydu ...
分类:
其他好文 时间:
2019-11-13 22:24:13
阅读次数:
124