private PMDFormat.EnglishBoneNameList ReadEnglishBoneNameList(int boneCount)
 {
     PMDFormat.EnglishBoneNameList result = new PMDFormat.EnglishBoneNameList();
     result.bone_name_eg = new string[boneCount];
     for (int i = 0; i < boneCount; i++)
     {
         result.bone_name_eg[i] = ConvertByteToString(binary_reader_.ReadBytes(20), "");
     }
     return(result);
 }
	private PMDFormat.EnglishBoneNameList ReadEnglishBoneNameList(int boneCount) {
		PMDFormat.EnglishBoneNameList result = new PMDFormat.EnglishBoneNameList();
		result.bone_name_eg = new string[boneCount];
		for (int i = 0; i < boneCount; i++) {
			result.bone_name_eg[i] = ConvertByteToString(binary_reader_.ReadBytes(20), "");
		}
		return result;
	}