在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → 使用spring.net实现依赖注入

使用spring.net实现依赖注入

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:7.93M
  • 下载次数:17
  • 浏览次数:112
  • 发布时间:2022-01-14
  • 实例类别:C#语言基础
  • 发 布 人:tshaoguo
  • 文件格式:.rar
  • 所需积分:2
 相关标签: Spring .NET NET PRI Pr

实例介绍

【实例简介】使用spring.net实现依赖注入

在C#控制台程序中使用spring.net框架实现依赖注入,并分别演示了构造函数注入和属性注入两种方式。

【实例截图】

from clipboard

【核心代码】

from clipboardfrom clipboardfrom clipboard

.
├── SpringDemo
│   ├── App.config
│   ├── Container.cs
│   ├── Dao
│   │   ├── IUserDao.cs
│   │   └── UserDao.cs
│   ├── Program.cs
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── Service
│   │   ├── IUserService.cs
│   │   ├── UserBLL.cs
│   │   └── UserService.cs
│   ├── SpringDemo.csproj
│   ├── SpringDemo.csproj.user
│   ├── bin
│   │   ├── Debug
│   │   │   ├── Common.Logging.Core.dll
│   │   │   ├── Common.Logging.Core.pdb
│   │   │   ├── Common.Logging.Core.xml
│   │   │   ├── Common.Logging.dll
│   │   │   ├── Common.Logging.pdb
│   │   │   ├── Common.Logging.xml
│   │   │   ├── Microsoft.Bcl.HashCode.dll
│   │   │   ├── Microsoft.Bcl.HashCode.xml
│   │   │   ├── Microsoft.Win32.Registry.dll
│   │   │   ├── Microsoft.Win32.Registry.xml
│   │   │   ├── Spring.Core.dll
│   │   │   ├── SpringDemo.exe
│   │   │   ├── SpringDemo.exe.config
│   │   │   ├── SpringDemo.pdb
│   │   │   ├── System.CodeDom.dll
│   │   │   ├── System.CodeDom.xml
│   │   │   ├── System.Configuration.ConfigurationManager.dll
│   │   │   ├── System.Configuration.ConfigurationManager.xml
│   │   │   ├── System.Security.AccessControl.dll
│   │   │   ├── System.Security.AccessControl.xml
│   │   │   ├── System.Security.Permissions.dll
│   │   │   ├── System.Security.Permissions.xml
│   │   │   ├── System.Security.Principal.Windows.dll
│   │   │   └── System.Security.Principal.Windows.xml
│   │   └── Release
│   ├── obj
│   │   └── Debug
│   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │       ├── SpringDemo.csproj.CopyComplete
│   │       ├── SpringDemo.csproj.CoreCompileInputs.cache
│   │       ├── SpringDemo.csproj.FileListAbsolute.txt
│   │       ├── SpringDemo.csprojAssemblyReference.cache
│   │       ├── SpringDemo.exe
│   │       ├── SpringDemo.pdb
│   │       ├── TempPE
│   │       ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │       ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │       └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   └── packages.config
├── SpringDemo.sln
├── packages
│   ├── Common.Logging.3.4.1
│   │   ├── Common.Logging.3.4.1.nupkg
│   │   └── lib
│   │       ├── net35
│   │       │   ├── Common.Logging.dll
│   │       │   ├── Common.Logging.pdb
│   │       │   └── Common.Logging.xml
│   │       ├── net40
│   │       │   ├── Common.Logging.dll
│   │       │   ├── Common.Logging.pdb
│   │       │   └── Common.Logging.xml
│   │       └── netstandard1.3
│   │           ├── Common.Logging.dll
│   │           ├── Common.Logging.pdb
│   │           └── Common.Logging.xml
│   ├── Common.Logging.Core.3.4.1
│   │   ├── Common.Logging.Core.3.4.1.nupkg
│   │   └── lib
│   │       ├── net40
│   │       │   ├── Common.Logging.Core.XML
│   │       │   ├── Common.Logging.Core.dll
│   │       │   └── Common.Logging.Core.pdb
│   │       ├── netstandard1.0
│   │       │   ├── Common.Logging.Core.dll
│   │       │   ├── Common.Logging.Core.pdb
│   │       │   └── Common.Logging.Core.xml
│   │       └── portable-win net40 sl40 wp7 wpa81
│   │           ├── Common.Logging.Core.XML
│   │           ├── Common.Logging.Core.dll
│   │           └── Common.Logging.Core.pdb
│   ├── Microsoft.Bcl.HashCode.1.1.1
│   │   ├── Icon.png
│   │   ├── LICENSE.TXT
│   │   ├── Microsoft.Bcl.HashCode.1.1.1.nupkg
│   │   ├── THIRD-PARTY-NOTICES.TXT
│   │   ├── lib
│   │   │   ├── net461
│   │   │   │   ├── Microsoft.Bcl.HashCode.dll
│   │   │   │   └── Microsoft.Bcl.HashCode.xml
│   │   │   ├── netcoreapp2.1
│   │   │   │   ├── Microsoft.Bcl.HashCode.dll
│   │   │   │   └── Microsoft.Bcl.HashCode.xml
│   │   │   ├── netstandard2.0
│   │   │   │   ├── Microsoft.Bcl.HashCode.dll
│   │   │   │   └── Microsoft.Bcl.HashCode.xml
│   │   │   └── netstandard2.1
│   │   │       ├── Microsoft.Bcl.HashCode.dll
│   │   │       └── Microsoft.Bcl.HashCode.xml
│   │   ├── ref
│   │   │   ├── net461
│   │   │   │   └── Microsoft.Bcl.HashCode.dll
│   │   │   ├── netcoreapp2.1
│   │   │   │   └── Microsoft.Bcl.HashCode.dll
│   │   │   ├── netstandard2.0
│   │   │   │   └── Microsoft.Bcl.HashCode.dll
│   │   │   └── netstandard2.1
│   │   │       └── Microsoft.Bcl.HashCode.dll
│   │   ├── useSharedDesignerContext.txt
│   │   └── version.txt
│   ├── Microsoft.CSharp.4.7.0
│   │   ├── LICENSE.TXT
│   │   ├── Microsoft.CSharp.4.7.0.nupkg
│   │   ├── THIRD-PARTY-NOTICES.TXT
│   │   ├── lib
│   │   │   ├── MonoAndroid10
│   │   │   │   └── _._
│   │   │   ├── MonoTouch10
│   │   │   │   └── _._
│   │   │   ├── net45
│   │   │   │   └── _._
│   │   │   ├── netcore50
│   │   │   │   └── Microsoft.CSharp.dll
│   │   │   ├── netcoreapp2.0
│   │   │   │   └── _._
│   │   │   ├── netstandard1.3
│   │   │   │   └── Microsoft.CSharp.dll
│   │   │   ├── netstandard2.0
│   │   │   │   ├── Microsoft.CSharp.dll
│   │   │   │   └── Microsoft.CSharp.xml
│   │   │   ├── portable-net45 win8 wp8 wpa81
│   │   │   │   └── _._
│   │   │   ├── uap10.0.16299
│   │   │   │   └── _._
│   │   │   ├── win8
│   │   │   │   └── _._
│   │   │   ├── wp80
│   │   │   │   └── _._
│   │   │   ├── wpa81
│   │   │   │   └── _._
│   │   │   ├── xamarinios10
│   │   │   │   └── _._
│   │   │   ├── xamarinmac20
│   │   │   │   └── _._
│   │   │   ├── xamarintvos10
│   │   │   │   └── _._
│   │   │   └── xamarinwatchos10
│   │   │       └── _._
│   │   ├── ref
│   │   │   ├── MonoAndroid10
│   │   │   │   └── _._
│   │   │   ├── MonoTouch10
│   │   │   │   └── _._
│   │   │   ├── net45
│   │   │   │   └── _._
│   │   │   ├── netcore50
│   │   │   │   ├── Microsoft.CSharp.dll
│   │   │   │   ├── Microsoft.CSharp.xml
│   │   │   │   ├── de
│   │   │   │   │   └── Microsoft.CSharp.xml
│   │   │   │   ├── es
│   │   │   │   │   └── Microsoft.CSharp.xml
│   │   │   │   ├── fr
│   │   │   │   │   └── Microsoft.CSharp.xml
│   │   │   │   ├── it
│   │   │   │   │   └── Microsoft.CSharp.xml
│   │   │   │   ├── ja
│   │   │   │   │   └── Microsoft.CSharp.xml
│   │   │   │   ├── ko
│   │   │   │   │   └── Microsoft.CSharp.xml
│   │   │   │   ├── ru
│   │   │   │   │   └── Microsoft.CSharp.xml
│   │   │   │   ├── zh-hans
│   │   │   │   │   └── Microsoft.CSharp.xml
│   │   │   │   └── zh-hant
│   │   │   │       └── Microsoft.CSharp.xml
│   │   │   ├── netcoreapp2.0
│   │   │   │   └── _._
│   │   │   ├── netstandard1.0
│   │   │   │   ├── Microsoft.CSharp.dll
│   │   │   │   ├── Microsoft.CSharp.xml
│   │   │   │   ├── de
│   │   │   │   │   └── Microsoft.CSharp.xml
│   │   │   │   ├── es
│   │   │   │   │   └── Microsoft.CSharp.xml
│   │   │   │   ├── fr
│   │   │   │   │   └── Microsoft.CSharp.xml
│   │   │   │   ├── it
│   │   │   │   │   └── Microsoft.CSharp.xml
│   │   │   │   ├── ja
│   │   │   │   │   └── Microsoft.CSharp.xml
│   │   │   │   ├── ko
│   │   │   │   │   └── Microsoft.CSharp.xml
│   │   │   │   ├── ru
│   │   │   │   │   └── Microsoft.CSharp.xml
│   │   │   │   ├── zh-hans
│   │   │   │   │   └── Microsoft.CSharp.xml
│   │   │   │   └── zh-hant
│   │   │   │       └── Microsoft.CSharp.xml
│   │   │   ├── netstandard2.0
│   │   │   │   ├── Microsoft.CSharp.dll
│   │   │   │   └── Microsoft.CSharp.xml
│   │   │   ├── portable-net45 win8 wp8 wpa81
│   │   │   │   └── _._
│   │   │   ├── uap10.0.16299
│   │   │   │   └── _._
│   │   │   ├── win8
│   │   │   │   └── _._
│   │   │   ├── wp80
│   │   │   │   └── _._
│   │   │   ├── wpa81
│   │   │   │   └── _._
│   │   │   ├── xamarinios10
│   │   │   │   └── _._
│   │   │   ├── xamarinmac20
│   │   │   │   └── _._
│   │   │   ├── xamarintvos10
│   │   │   │   └── _._
│   │   │   └── xamarinwatchos10
│   │   │       └── _._
│   │   ├── useSharedDesignerContext.txt
│   │   └── version.txt
│   ├── Microsoft.Win32.Registry.4.7.0
│   │   ├── LICENSE.TXT
│   │   ├── Microsoft.Win32.Registry.4.7.0.nupkg
│   │   ├── THIRD-PARTY-NOTICES.TXT
│   │   ├── lib
│   │   │   ├── net46
│   │   │   │   └── Microsoft.Win32.Registry.dll
│   │   │   ├── net461
│   │   │   │   ├── Microsoft.Win32.Registry.dll
│   │   │   │   └── Microsoft.Win32.Registry.xml
│   │   │   ├── netstandard1.3
│   │   │   │   └── Microsoft.Win32.Registry.dll
│   │   │   └── netstandard2.0
│   │   │       ├── Microsoft.Win32.Registry.dll
│   │   │       └── Microsoft.Win32.Registry.xml
│   │   ├── ref
│   │   │   ├── net46
│   │   │   │   └── Microsoft.Win32.Registry.dll
│   │   │   ├── net461
│   │   │   │   ├── Microsoft.Win32.Registry.dll
│   │   │   │   └── Microsoft.Win32.Registry.xml
│   │   │   ├── net472
│   │   │   │   ├── Microsoft.Win32.Registry.dll
│   │   │   │   └── Microsoft.Win32.Registry.xml
│   │   │   ├── netstandard1.3
│   │   │   │   ├── Microsoft.Win32.Registry.dll
│   │   │   │   ├── Microsoft.Win32.Registry.xml
│   │   │   │   ├── de
│   │   │   │   │   └── Microsoft.Win32.Registry.xml
│   │   │   │   ├── es
│   │   │   │   │   └── Microsoft.Win32.Registry.xml
│   │   │   │   ├── fr
│   │   │   │   │   └── Microsoft.Win32.Registry.xml
│   │   │   │   ├── it
│   │   │   │   │   └── Microsoft.Win32.Registry.xml
│   │   │   │   ├── ja
│   │   │   │   │   └── Microsoft.Win32.Registry.xml
│   │   │   │   ├── ko
│   │   │   │   │   └── Microsoft.Win32.Registry.xml
│   │   │   │   ├── ru
│   │   │   │   │   └── Microsoft.Win32.Registry.xml
│   │   │   │   ├── zh-hans
│   │   │   │   │   └── Microsoft.Win32.Registry.xml
│   │   │   │   └── zh-hant
│   │   │   │       └── Microsoft.Win32.Registry.xml
│   │   │   └── netstandard2.0
│   │   │       ├── Microsoft.Win32.Registry.dll
│   │   │       └── Microsoft.Win32.Registry.xml
│   │   ├── runtimes
│   │   │   ├── unix
│   │   │   │   └── lib
│   │   │   │       └── netstandard2.0
│   │   │   │           ├── Microsoft.Win32.Registry.dll
│   │   │   │           └── Microsoft.Win32.Registry.xml
│   │   │   └── win
│   │   │       └── lib
│   │   │           ├── net46
│   │   │           │   └── Microsoft.Win32.Registry.dll
│   │   │           ├── net461
│   │   │           │   ├── Microsoft.Win32.Registry.dll
│   │   │           │   └── Microsoft.Win32.Registry.xml
│   │   │           ├── netstandard1.3
│   │   │           │   └── Microsoft.Win32.Registry.dll
│   │   │           └── netstandard2.0
│   │   │               ├── Microsoft.Win32.Registry.dll
│   │   │               └── Microsoft.Win32.Registry.xml
│   │   ├── useSharedDesignerContext.txt
│   │   └── version.txt
│   ├── Spring.Core.3.0.0
│   │   ├── Spring.Core.3.0.0.nupkg
│   │   ├── SpringSource_Leaves32x32.png
│   │   └── lib
│   │       ├── net461
│   │       │   └── Spring.Core.dll
│   │       └── netstandard2.0
│   │           └── Spring.Core.dll
│   ├── System.CodeDom.4.7.0
│   │   ├── LICENSE.TXT
│   │   ├── System.CodeDom.4.7.0.nupkg
│   │   ├── THIRD-PARTY-NOTICES.TXT
│   │   ├── lib
│   │   │   ├── net461
│   │   │   │   ├── System.CodeDom.dll
│   │   │   │   └── System.CodeDom.xml
│   │   │   └── netstandard2.0
│   │   │       ├── System.CodeDom.dll
│   │   │       └── System.CodeDom.xml
│   │   ├── ref
│   │   │   ├── net461
│   │   │   │   ├── System.CodeDom.dll
│   │   │   │   └── System.CodeDom.xml
│   │   │   └── netstandard2.0
│   │   │       ├── System.CodeDom.dll
│   │   │       └── System.CodeDom.xml
│   │   ├── useSharedDesignerContext.txt
│   │   └── version.txt
│   ├── System.Configuration.ConfigurationManager.4.7.0
│   │   ├── LICENSE.TXT
│   │   ├── System.Configuration.ConfigurationManager.4.7.0.nupkg
│   │   ├── THIRD-PARTY-NOTICES.TXT
│   │   ├── lib
│   │   │   ├── net461
│   │   │   │   ├── System.Configuration.ConfigurationManager.dll
│   │   │   │   └── System.Configuration.ConfigurationManager.xml
│   │   │   └── netstandard2.0
│   │   │       ├── System.Configuration.ConfigurationManager.dll
│   │   │       └── System.Configuration.ConfigurationManager.xml
│   │   ├── ref
│   │   │   ├── net461
│   │   │   │   ├── System.Configuration.ConfigurationManager.dll
│   │   │   │   └── System.Configuration.ConfigurationManager.xml
│   │   │   └── netstandard2.0
│   │   │       ├── System.Configuration.ConfigurationManager.dll
│   │   │       └── System.Configuration.ConfigurationManager.xml
│   │   ├── useSharedDesignerContext.txt
│   │   └── version.txt
│   ├── System.Reflection.Emit.4.7.0
│   │   ├── LICENSE.TXT
│   │   ├── System.Reflection.Emit.4.7.0.nupkg
│   │   ├── THIRD-PARTY-NOTICES.TXT
│   │   ├── lib
│   │   │   ├── MonoAndroid10
│   │   │   │   └── _._
│   │   │   ├── MonoTouch10
│   │   │   │   └── _._
│   │   │   ├── net45
│   │   │   │   └── _._
│   │   │   ├── netcore50
│   │   │   │   └── System.Reflection.Emit.dll
│   │   │   ├── netcoreapp2.0
│   │   │   │   └── _._
│   │   │   ├── netstandard1.1
│   │   │   │   ├── System.Reflection.Emit.dll
│   │   │   │   └── System.Reflection.Emit.xml
│   │   │   ├── netstandard1.3
│   │   │   │   └── System.Reflection.Emit.dll
│   │   │   ├── netstandard2.0
│   │   │   │   ├── System.Reflection.Emit.dll
│   │   │   │   └── System.Reflection.Emit.xml
│   │   │   ├── netstandard2.1
│   │   │   │   └── _._
│   │   │   ├── xamarinios10
│   │   │   │   └── _._
│   │   │   ├── xamarinmac20
│   │   │   │   └── _._
│   │   │   ├── xamarintvos10
│   │   │   │   └── _._
│   │   │   └── xamarinwatchos10
│   │   │       └── _._
│   │   ├── ref
│   │   │   ├── MonoAndroid10
│   │   │   │   └── _._
│   │   │   ├── MonoTouch10
│   │   │   │   └── _._
│   │   │   ├── net45
│   │   │   │   └── _._
│   │   │   ├── netcoreapp2.0
│   │   │   │   └── _._
│   │   │   ├── netstandard1.1
│   │   │   │   ├── System.Reflection.Emit.dll
│   │   │   │   ├── System.Reflection.Emit.xml
│   │   │   │   ├── de
│   │   │   │   │   └── System.Reflection.Emit.xml
│   │   │   │   ├── es
│   │   │   │   │   └── System.Reflection.Emit.xml
│   │   │   │   ├── fr
│   │   │   │   │   └── System.Reflection.Emit.xml
│   │   │   │   ├── it
│   │   │   │   │   └── System.Reflection.Emit.xml
│   │   │   │   ├── ja
│   │   │   │   │   └── System.Reflection.Emit.xml
│   │   │   │   ├── ko
│   │   │   │   │   └── System.Reflection.Emit.xml
│   │   │   │   ├── ru
│   │   │   │   │   └── System.Reflection.Emit.xml
│   │   │   │   ├── zh-hans
│   │   │   │   │   └── System.Reflection.Emit.xml
│   │   │   │   └── zh-hant
│   │   │   │       └── System.Reflection.Emit.xml
│   │   │   ├── netstandard2.0
│   │   │   │   ├── System.Reflection.Emit.dll
│   │   │   │   └── System.Reflection.Emit.xml
│   │   │   ├── netstandard2.1
│   │   │   │   └── _._
│   │   │   ├── xamarinios10
│   │   │   │   └── _._
│   │   │   ├── xamarinmac20
│   │   │   │   └── _._
│   │   │   ├── xamarintvos10
│   │   │   │   └── _._
│   │   │   └── xamarinwatchos10
│   │   │       └── _._
│   │   ├── runtimes
│   │   │   └── aot
│   │   │       └── lib
│   │   │           └── netcore50
│   │   │               ├── System.Reflection.Emit.dll
│   │   │               └── System.Reflection.Emit.xml
│   │   ├── useSharedDesignerContext.txt
│   │   └── version.txt
│   ├── System.Reflection.Emit.Lightweight.4.7.0
│   │   ├── LICENSE.TXT
│   │   ├── System.Reflection.Emit.Lightweight.4.7.0.nupkg
│   │   ├── THIRD-PARTY-NOTICES.TXT
│   │   ├── lib
│   │   │   ├── MonoAndroid10
│   │   │   │   └── _._
│   │   │   ├── MonoTouch10
│   │   │   │   └── _._
│   │   │   ├── net45
│   │   │   │   └── _._
│   │   │   ├── netcore50
│   │   │   │   └── System.Reflection.Emit.Lightweight.dll
│   │   │   ├── netcoreapp2.0
│   │   │   │   └── _._
│   │   │   ├── netstandard1.0
│   │   │   │   ├── System.Reflection.Emit.Lightweight.dll
│   │   │   │   └── System.Reflection.Emit.Lightweight.xml
│   │   │   ├── netstandard1.3
│   │   │   │   └── System.Reflection.Emit.Lightweight.dll
│   │   │   ├── netstandard2.0
│   │   │   │   ├── System.Reflection.Emit.Lightweight.dll
│   │   │   │   └── System.Reflection.Emit.Lightweight.xml
│   │   │   ├── netstandard2.1
│   │   │   │   └── _._
│   │   │   ├── portable-net45 wp8
│   │   │   │   └── _._
│   │   │   ├── wp80
│   │   │   │   └── _._
│   │   │   ├── xamarinios10
│   │   │   │   └── _._
│   │   │   ├── xamarinmac20
│   │   │   │   └── _._
│   │   │   ├── xamarintvos10
│   │   │   │   └── _._
│   │   │   └── xamarinwatchos10
│   │   │       └── _._
│   │   ├── ref
│   │   │   ├── MonoAndroid10
│   │   │   │   └── _._
│   │   │   ├── MonoTouch10
│   │   │   │   └── _._
│   │   │   ├── net45
│   │   │   │   └── _._
│   │   │   ├── netcoreapp2.0
│   │   │   │   └── _._
│   │   │   ├── netstandard1.0
│   │   │   │   ├── System.Reflection.Emit.Lightweight.dll
│   │   │   │   ├── System.Reflection.Emit.Lightweight.xml
│   │   │   │   ├── de
│   │   │   │   │   └── System.Reflection.Emit.Lightweight.xml
│   │   │   │   ├── es
│   │   │   │   │   └── System.Reflection.Emit.Lightweight.xml
│   │   │   │   ├── fr
│   │   │   │   │   └── System.Reflection.Emit.Lightweight.xml
│   │   │   │   ├── it
│   │   │   │   │   └── System.Reflection.Emit.Lightweight.xml
│   │   │   │   ├── ja
│   │   │   │   │   └── System.Reflection.Emit.Lightweight.xml
│   │   │   │   ├── ko
│   │   │   │   │   └── System.Reflection.Emit.Lightweight.xml
│   │   │   │   ├── ru
│   │   │   │   │   └── System.Reflection.Emit.Lightweight.xml
│   │   │   │   ├── zh-hans
│   │   │   │   │   └── System.Reflection.Emit.Lightweight.xml
│   │   │   │   └── zh-hant
│   │   │   │       └── System.Reflection.Emit.Lightweight.xml
│   │   │   ├── netstandard2.0
│   │   │   │   ├── System.Reflection.Emit.Lightweight.dll
│   │   │   │   └── System.Reflection.Emit.Lightweight.xml
│   │   │   ├── netstandard2.1
│   │   │   │   └── _._
│   │   │   ├── portable-net45 wp8
│   │   │   │   └── _._
│   │   │   ├── wp80
│   │   │   │   └── _._
│   │   │   ├── xamarinios10
│   │   │   │   └── _._
│   │   │   ├── xamarinmac20
│   │   │   │   └── _._
│   │   │   ├── xamarintvos10
│   │   │   │   └── _._
│   │   │   └── xamarinwatchos10
│   │   │       └── _._
│   │   ├── runtimes
│   │   │   └── aot
│   │   │       └── lib
│   │   │           └── netcore50
│   │   │               ├── System.Reflection.Emit.Lightweight.dll
│   │   │               └── System.Reflection.Emit.Lightweight.xml
│   │   ├── useSharedDesignerContext.txt
│   │   └── version.txt
│   ├── System.Security.AccessControl.4.7.0
│   │   ├── LICENSE.TXT
│   │   ├── System.Security.AccessControl.4.7.0.nupkg
│   │   ├── THIRD-PARTY-NOTICES.TXT
│   │   ├── lib
│   │   │   ├── net46
│   │   │   │   └── System.Security.AccessControl.dll
│   │   │   ├── net461
│   │   │   │   ├── System.Security.AccessControl.dll
│   │   │   │   └── System.Security.AccessControl.xml
│   │   │   ├── netstandard1.3
│   │   │   │   └── System.Security.AccessControl.dll
│   │   │   ├── netstandard2.0
│   │   │   │   ├── System.Security.AccessControl.dll
│   │   │   │   └── System.Security.AccessControl.xml
│   │   │   └── uap10.0.16299
│   │   │       └── _._
│   │   ├── ref
│   │   │   ├── net46
│   │   │   │   └── System.Security.AccessControl.dll
│   │   │   ├── net461
│   │   │   │   ├── System.Security.AccessControl.dll
│   │   │   │   └── System.Security.AccessControl.xml
│   │   │   ├── netstandard1.3
│   │   │   │   ├── System.Security.AccessControl.dll
│   │   │   │   ├── System.Security.AccessControl.xml
│   │   │   │   ├── de
│   │   │   │   │   └── System.Security.AccessControl.xml
│   │   │   │   ├── es
│   │   │   │   │   └── System.Security.AccessControl.xml
│   │   │   │   ├── fr
│   │   │   │   │   └── System.Security.AccessControl.xml
│   │   │   │   ├── it
│   │   │   │   │   └── System.Security.AccessControl.xml
│   │   │   │   ├── ja
│   │   │   │   │   └── System.Security.AccessControl.xml
│   │   │   │   ├── ko
│   │   │   │   │   └── System.Security.AccessControl.xml
│   │   │   │   ├── ru
│   │   │   │   │   └── System.Security.AccessControl.xml
│   │   │   │   ├── zh-hans
│   │   │   │   │   └── System.Security.AccessControl.xml
│   │   │   │   └── zh-hant
│   │   │   │       └── System.Security.AccessControl.xml
│   │   │   ├── netstandard2.0
│   │   │   │   ├── System.Security.AccessControl.dll
│   │   │   │   └── System.Security.AccessControl.xml
│   │   │   └── uap10.0.16299
│   │   │       └── _._
│   │   ├── runtimes
│   │   │   └── win
│   │   │       └── lib
│   │   │           ├── net46
│   │   │           │   └── System.Security.AccessControl.dll
│   │   │           ├── net461
│   │   │           │   ├── System.Security.AccessControl.dll
│   │   │           │   └── System.Security.AccessControl.xml
│   │   │           ├── netcoreapp2.0
│   │   │           │   ├── System.Security.AccessControl.dll
│   │   │           │   └── System.Security.AccessControl.xml
│   │   │           ├── netstandard1.3
│   │   │           │   └── System.Security.AccessControl.dll
│   │   │           └── uap10.0.16299
│   │   │               └── _._
│   │   ├── useSharedDesignerContext.txt
│   │   └── version.txt
│   ├── System.Security.Permissions.4.7.0
│   │   ├── LICENSE.TXT
│   │   ├── System.Security.Permissions.4.7.0.nupkg
│   │   ├── THIRD-PARTY-NOTICES.TXT
│   │   ├── lib
│   │   │   ├── net461
│   │   │   │   ├── System.Security.Permissions.dll
│   │   │   │   └── System.Security.Permissions.xml
│   │   │   ├── netcoreapp3.0
│   │   │   │   ├── System.Security.Permissions.dll
│   │   │   │   └── System.Security.Permissions.xml
│   │   │   └── netstandard2.0
│   │   │       ├── System.Security.Permissions.dll
│   │   │       └── System.Security.Permissions.xml
│   │   ├── ref
│   │   │   ├── net461
│   │   │   │   ├── System.Security.Permissions.dll
│   │   │   │   └── System.Security.Permissions.xml
│   │   │   ├── netcoreapp3.0
│   │   │   │   ├── System.Security.Permissions.dll
│   │   │   │   └── System.Security.Permissions.xml
│   │   │   └── netstandard2.0
│   │   │       ├── System.Security.Permissions.dll
│   │   │       └── System.Security.Permissions.xml
│   │   ├── useSharedDesignerContext.txt
│   │   └── version.txt
│   └── System.Security.Principal.Windows.4.7.0
│       ├── LICENSE.TXT
│       ├── System.Security.Principal.Windows.4.7.0.nupkg
│       ├── THIRD-PARTY-NOTICES.TXT
│       ├── lib
│       │   ├── net46
│       │   │   └── System.Security.Principal.Windows.dll
│       │   ├── net461
│       │   │   ├── System.Security.Principal.Windows.dll
│       │   │   └── System.Security.Principal.Windows.xml
│       │   ├── netstandard1.3
│       │   │   └── System.Security.Principal.Windows.dll
│       │   ├── netstandard2.0
│       │   │   ├── System.Security.Principal.Windows.dll
│       │   │   └── System.Security.Principal.Windows.xml
│       │   └── uap10.0.16299
│       │       └── _._
│       ├── ref
│       │   ├── net46
│       │   │   └── System.Security.Principal.Windows.dll
│       │   ├── net461
│       │   │   ├── System.Security.Principal.Windows.dll
│       │   │   └── System.Security.Principal.Windows.xml
│       │   ├── netcoreapp3.0
│       │   │   ├── System.Security.Principal.Windows.dll
│       │   │   └── System.Security.Principal.Windows.xml
│       │   ├── netstandard1.3
│       │   │   ├── System.Security.Principal.Windows.dll
│       │   │   ├── System.Security.Principal.Windows.xml
│       │   │   ├── de
│       │   │   │   └── System.Security.Principal.Windows.xml
│       │   │   ├── es
│       │   │   │   └── System.Security.Principal.Windows.xml
│       │   │   ├── fr
│       │   │   │   └── System.Security.Principal.Windows.xml
│       │   │   ├── it
│       │   │   │   └── System.Security.Principal.Windows.xml
│       │   │   ├── ja
│       │   │   │   └── System.Security.Principal.Windows.xml
│       │   │   ├── ko
│       │   │   │   └── System.Security.Principal.Windows.xml
│       │   │   ├── ru
│       │   │   │   └── System.Security.Principal.Windows.xml
│       │   │   ├── zh-hans
│       │   │   │   └── System.Security.Principal.Windows.xml
│       │   │   └── zh-hant
│       │   │       └── System.Security.Principal.Windows.xml
│       │   ├── netstandard2.0
│       │   │   ├── System.Security.Principal.Windows.dll
│       │   │   └── System.Security.Principal.Windows.xml
│       │   └── uap10.0.16299
│       │       └── _._
│       ├── runtimes
│       │   ├── unix
│       │   │   └── lib
│       │   │       ├── netcoreapp2.0
│       │   │       │   ├── System.Security.Principal.Windows.dll
│       │   │       │   └── System.Security.Principal.Windows.xml
│       │   │       └── netcoreapp2.1
│       │   │           ├── System.Security.Principal.Windows.dll
│       │   │           └── System.Security.Principal.Windows.xml
│       │   └── win
│       │       └── lib
│       │           ├── net46
│       │           │   └── System.Security.Principal.Windows.dll
│       │           ├── net461
│       │           │   ├── System.Security.Principal.Windows.dll
│       │           │   └── System.Security.Principal.Windows.xml
│       │           ├── netcoreapp2.0
│       │           │   ├── System.Security.Principal.Windows.dll
│       │           │   └── System.Security.Principal.Windows.xml
│       │           ├── netcoreapp2.1
│       │           │   ├── System.Security.Principal.Windows.dll
│       │           │   └── System.Security.Principal.Windows.xml
│       │           ├── netstandard1.3
│       │           │   └── System.Security.Principal.Windows.dll
│       │           └── uap10.0.16299
│       │               └── _._
│       ├── useSharedDesignerContext.txt
│       └── version.txt
└── 好例子网_SpringDemo.rar

293 directories, 401 files



标签: Spring .NET NET PRI Pr

实例下载地址

使用spring.net实现依赖注入

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警