Alquimiaware.NuGetUnity.NuGetWindow.FindFirst C# (CSharp) Method

FindFirst() private static method

Searches by a pattern, returning the first asset found.
private static FindFirst ( string filter ) : string
filter string The seach patter, same as FindAsset.
return string
        private static string FindFirst(string filter)
        {
            return AssetDatabase.GUIDToAssetPath(
                AssetDatabase.FindAssets(filter)[0]);
        }