您不能選擇超過 %s 個話題 話題必須以字母或數字為開頭,可包含連接號 ('-') 且最長為 35 個字
 
 
 

20 行
242 B

  1. using System;
  2. public class UnemiShouldCloseEvent
  3. {
  4. public UnemiShouldCloseEvent(object sender)
  5. {
  6. this._sender = sender;
  7. }
  8. public object Sender
  9. {
  10. get
  11. {
  12. return this._sender;
  13. }
  14. }
  15. private object _sender;
  16. }