Develop and Download Open Source Software

Browse Subversion Repository

Contents of /CommandHelper.cs

Parent Directory Parent Directory | Revision Log Revision Log


Revision 11 - (show annotations) (download)
Mon Mar 28 01:33:42 2011 UTC (13 years, 1 month ago) by aqua877
File size: 447 byte(s)
・URL短縮機能の追加(bit.ly j.mp is.gd ux.nu p.tl)
・コメントを朗読する際に、同じコメントが読まれたり、読まれる順序が不順だったのを修正
・バグ修正等
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5
6 namespace Aqua877.WinApp.IronLivetube
7 {
8 public enum Commands
9 {
10 }
11
12 public class CommandHelper
13 {
14 public event Action<Commands> OnCommandExecuted;
15
16 public void NotifyComment(IEnumerable<LivetubeCommentData> data)
17 {
18 data.ForEach(this.NotifyComment);
19 }
20
21 public void NotifyComment(LivetubeCommentData data)
22 {
23 }
24 }
25 }

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26