码迷,mamicode.com
首页 >  
搜索关键字:assembly    ( 1354个结果
netcore 2.2 使用 Autofac 实现自动注入
Autofac自动注入是通过名称约定来实现依赖注入 ps:本demo接口层都以“I”开头,以“Service”结尾。服务层实现都以“Service”结尾。 为什么要实现自动注入 大多时候,我们都是 以下方式进行依赖注入 public IServiceProvider ConfigureService ...
分类:Web程序   时间:2019-12-03 23:45:07    阅读次数:126
.net core 反编译一小段
public static class A { private static readonly MethodInfo GetServiceInfo; public static IApplicationBuilder My_UseStaticFiles(this IApplicationBuilde ...
分类:Web程序   时间:2019-11-30 11:15:56    阅读次数:119
.Net反射基础
Assembly:封装程序集信息,可以动态加载程序集 获取Assembly的几种方式: 1、var ass1 = Assembly.Load("ClassLibrary1");//项目中已引用此程序集,可以使用这种方法 2、var ass2 = Assembly.LoadFrom("c://xxxx ...
分类:Web程序   时间:2019-11-30 09:23:57    阅读次数:89
C#高效编程
一、 使用readonly而不是const const是编译时常量,readonly是运行时常量。如果引用了一个库中的const常量,则在更新了程序集,但应用程序没有重新编译时,运行结果会出错 如程序集assembly.dll中有如下声明 在ConsoleApp.exe中调用。在正常编译的情况下是没 ...
分类:Windows程序   时间:2019-11-27 19:08:03    阅读次数:70
InvalidPathException: Malformed input or input contains unmappable ; maven-assembly-plugin maven jar 打包依赖为一个包
一、 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
16位masm汇编实现记忆化递归搜索斐波那契数列第50项
```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 的摄像头控件VideoCaptureElement 浅谈
最近有个小项目要求用wpf实现显示摄像头画面,并且能拍照,标注,切换画面等等。 看了一下wpf有个自带的库WPFMediaKit.dll,里面有个摄像头控件VideoCaptureElement ,好吧,就用它了 1、能拍照能书写的话,就是在摄像头控件上面套一个InkCanvas了,这个写成一个自定 ...
分类:Windows程序   时间:2019-11-21 17:17:10    阅读次数:224
通过反射获取实现同一接口的所有类
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
C# 接口
Type helloType = typeof(Hello); //Hello是一个接口 List<Type> types = new List<Type>(); //遍历程序集 foreach (var assembly in AppDomain.CurrentDomain.GetAssembli ...
分类:Windows程序   时间:2019-11-16 14:31:11    阅读次数:88
dubbo监控安装
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
1354条   上一页 1 ... 10 11 12 13 14 ... 136 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!