ResXManagerFindResourcesT Method
Finds the resources of the specified type inside the .NET managed resource file.
Namespace: DevCase.Core.Application.ResourcesAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public virtual IEnumerable<Resource<T>> FindResources<T>()
Public Overridable Function FindResources(Of T) As IEnumerable(Of Resource(Of T))
Dim instance As ResXManager
Dim returnValue As IEnumerable(Of Resource(Of T))
returnValue = instance.FindResources()
public:
generic<typename T>
virtual IEnumerable<Resource<T>^>^ FindResources()
abstract FindResources : unit -> IEnumerable<Resource<'T>>
override FindResources : unit -> IEnumerable<Resource<'T>>
No code example is currently available or this language may not be supported.
- T
-
The type.
IEnumerableResourceT
The resource.
FileNotFoundException
|
Resource file not found.
|
ArgumentException
|
Resource with the specified name is not found.;name
|
ArgumentException
|
The specified Type differs from the resource Type.;T
|