ARCed.Helpers.ResourceHelper.GetTypes C# (CSharp) Метод

GetTypes() публичный статический Метод

Finds all resources that can be found in the given relative path
public static GetTypes ( string folder ) : List
folder string Directory that will be searched. This path must be relative to /// both the project and the root directory of the RTP
Результат List
        public static List<GameResource> GetTypes(string folder)
        {
            var results = _resources.FindAll(r => folder == r.RelativeDirectory);
            results.Sort();
            return results;
        }