Achamenes.ID3.StandardGenreManager.GetGenreName C# (CSharp) 메소드

GetGenreName() 공개 메소드

Returns the name of genre corresponding with the given code.
public GetGenreName ( byte code ) : string
code byte The code of the genre.
리턴 string
        public string GetGenreName(byte code)
        {
            if(code>=0 && code <genresList.Length)
                return genresList[code];
            return "Other"; // Unrecognized genre code
        }