Example #1
0
 // 가천대 강의로부터 새로운 게시글이 등록될경우 이 함수가 실행됨.
 private static void GachonClass_NewPost(GachonClass gclass, PostItem postItem)
 {
     Console.WriteLine(String.Format("[알림 - {0}] {1} -> {2}", postItem.posttype.ToString(), gclass.Title, postItem.ToString()));
     Console.WriteLine("\t\t" + postItem.Content_Briefly + "\r\n");
     //  Console.WriteLine("[알림 - " + postItem.posttype.ToString() + "] " + gclass.Title + " -> " + postItem.ToString() + "       || " + postItem.Content_Briefly);
 }