IResourceCollection Methods
Interface Methods 1 member
Represents a collection of resources.
Attempts to find a resource by its name.
public interface IResourceCollection{ public virtual bool TryGetByName( string name, out IResource? resource) { // ... }}Parameters
name string The name of the resource to find. resource IResource? When this method returns, contains the resource with the specified name, if found; otherwise, null. Returns
bool true if a resource with the specified name was found; otherwise, false. Remarks
The resource name comparison is case-insensitive.