Alquimiaware.NuGetUnity.NuGetWindow.FindFirst C# (CSharp) 메소드

FindFirst() 개인적인 정적인 메소드

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