change LecturreActivity (add Feature #37)
This commit is contained in:
@@ -190,10 +190,10 @@ namespace CampusAppWP8.Model.Lecture
|
||||
string result = string.Empty;
|
||||
foreach (LectureLecturer tmpLecturer in this.Lecturer)
|
||||
{
|
||||
result += tmpLecturer.ToString() + "\n";
|
||||
result += StringManager.AddNewLine(tmpLecturer.ToString());
|
||||
}
|
||||
|
||||
this.LecturerString = result.TrimEnd('\n');
|
||||
this.LecturerString = StringManager.RemvoveNewLine(result);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -204,10 +204,10 @@ namespace CampusAppWP8.Model.Lecture
|
||||
string result = string.Empty;
|
||||
foreach (LectureCourse course in this.Course)
|
||||
{
|
||||
result += course.Title + "\n";
|
||||
result += StringManager.AddNewLine(course.Title);
|
||||
}
|
||||
|
||||
this.CourseString = result.TrimEnd('\n');
|
||||
this.CourseString = StringManager.RemvoveNewLine(result);
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
Reference in New Issue
Block a user