This ScoreImporter can read Guitar Pro 6 (gpx) files.
Inheritance: ScoreImporter
コード例 #1
0
ファイル: GpxImporterTest.cs プロジェクト: CoderLine/alphaTab
 internal new GpxImporter PrepareImporterWithBytes(byte[] buffer)
 {
     var readerBase = new GpxImporter();
     readerBase.Init(new StreamWrapper(new MemoryStream(buffer)));
     return readerBase;
 }