示例#1
0
 public void AddRemoveon(MethodRef method_ref)
 {
     removeon = method_ref;
 }
示例#2
0
 public void AddAddon(MethodRef method_ref)
 {
     addon = method_ref;
 }
示例#3
0
 public void AddFire(MethodRef method_ref)
 {
     fire = method_ref;
 }
示例#4
0
 public void AddSet (MethodRef _set)
 {
         this._set = _set;
 }
示例#5
0
                public void AddOther (MethodRef other)
                {
			if (other_list == null)
				other_list = new ArrayList ();
                        other_list.Add (other);
                }
 public void AddSet(MethodRef _set)
 {
     this._set = _set;
 }
示例#7
0
 public void AddGet (MethodRef _get)
 {
         this._get = _get;
 }
 public void AddGet(MethodRef _get)
 {
     this._get = _get;
 }
示例#9
0
文件: EventDef.cs 项目: nobled/mono
 public void AddRemoveon (MethodRef method_ref)
 {
         removeon = method_ref;
 }
示例#10
0
文件: EventDef.cs 项目: nobled/mono
                public void AddOther (MethodRef method_ref)
                {
			if (other_list == null)
				other_list = new ArrayList ();
                        other_list.Add (method_ref);
                }
示例#11
0
文件: EventDef.cs 项目: nobled/mono
 public void AddFire (MethodRef method_ref)
 {
         fire = method_ref;
 }
示例#12
0
文件: EventDef.cs 项目: nobled/mono
 public void AddAddon (MethodRef method_ref)
 {
         addon = method_ref;
 }