예제 #1
0
파일: Artist.cs 프로젝트: thoja21/banshee-1
        ArtistReleaseType(Enum enumeration, ReleaseArtistType artistType)
        {
            StringBuilder builder = new StringBuilder();

            Format(builder, enumeration, artistType);
            str = builder.ToString();
        }
예제 #2
0
파일: Artist.cs 프로젝트: thoja21/banshee-1
        public ArtistReleaseType(ReleaseType type, ReleaseStatus status, ReleaseArtistType artistType)
        {
            StringBuilder builder = new StringBuilder();

            Format(builder, type, artistType);
            builder.Append('+');
            Format(builder, status, artistType);
            str = builder.ToString();
        }
예제 #3
0
파일: Artist.cs 프로젝트: hannuraina/tag
 static void Format (StringBuilder builder, Enum enumeration, ReleaseArtistType artistType)
 {
     builder.Append (artistType == ReleaseArtistType.VariousArtists ? "va-" : "sa-");
     Utils.EnumToString (builder, enumeration.ToString ());
 }
예제 #4
0
파일: Artist.cs 프로젝트: hannuraina/tag
 ArtistReleaseType (Enum enumeration, ReleaseArtistType artistType)
 {
     StringBuilder builder = new StringBuilder ();
     Format (builder, enumeration, artistType);
     str = builder.ToString ();
 }
예제 #5
0
파일: Artist.cs 프로젝트: hannuraina/tag
 public ArtistReleaseType (ReleaseType type, ReleaseStatus status, ReleaseArtistType artistType)
 {
     StringBuilder builder = new StringBuilder ();
     Format (builder, type, artistType);
     builder.Append ('+');
     Format (builder, status, artistType);
     str = builder.ToString ();
 }
예제 #6
0
파일: Artist.cs 프로젝트: hannuraina/tag
 public ArtistReleaseType (ReleaseStatus status, ReleaseArtistType artistType) : this ((Enum)status, artistType)
 {
 }
예제 #7
0
파일: Artist.cs 프로젝트: hannuraina/tag
 public ArtistReleaseType (ReleaseType type, ReleaseArtistType artistType) : this ((Enum)type, artistType)
 {
 }
예제 #8
0
파일: Artist.cs 프로젝트: thoja21/banshee-1
 static void Format(StringBuilder builder, Enum enumeration, ReleaseArtistType artistType)
 {
     builder.Append(artistType == ReleaseArtistType.VariousArtists ? "va-" : "sa-");
     Utils.EnumToString(builder, enumeration.ToString());
 }
예제 #9
0
파일: Artist.cs 프로젝트: thoja21/banshee-1
 public ArtistReleaseType(ReleaseStatus status, ReleaseArtistType artistType) : this((Enum)status, artistType)
 {
 }
예제 #10
0
파일: Artist.cs 프로젝트: thoja21/banshee-1
 public ArtistReleaseType(ReleaseType type, ReleaseArtistType artistType) : this((Enum)type, artistType)
 {
 }