implement ToString() for SynthesizedAudioCommandNote
This commit is contained in:
parent
57664bd409
commit
1fd6b6a192
@ -19,6 +19,8 @@
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
using System;
|
||||
|
||||
namespace UniversalEditor.ObjectModels.Multimedia.Audio.Synthesized
|
||||
{
|
||||
/// <summary>
|
||||
@ -72,5 +74,10 @@ namespace UniversalEditor.ObjectModels.Multimedia.Audio.Synthesized
|
||||
VoiceOverlap = this.VoiceOverlap
|
||||
};
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return String.Format("{0} [{1}] <{2}, {3}>", Lyric, Phoneme, Position, Length);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user