コード例 #1
0
			// Token: 0x06000098 RID: 152 RVA: 0x00004E54 File Offset: 0x00003E54
			protected void SetProperty(uint id, Property.Types type, object value)
			{
				if (value == null)
				{
					if (this.Properties.ContainsKey(id))
					{
						this.Properties.Remove(id);
					}
					return;
				}
				this.Properties.Add(new Property(id, type, value), true);
			}
コード例 #2
0
 // Token: 0x06000033 RID: 51 RVA: 0x00002E8D File Offset: 0x00001E8D
 public Property(uint id, Property.Types type, object value)
 {
     this._id    = id;
     this._type  = type;
     this._value = value;
 }