コード例 #1
0
ファイル: Workspace2.cs プロジェクト: JeroenBos/ASDE
		/// <summary> Adds the specified set relation to the knowledge of this workspace. </summary>
		public void Add(SetRelation relation)
		{
			Contract.Requires(relation != null);

			this.setRelations.Add(relation);
		}
コード例 #2
0
ファイル: SetRelations.cs プロジェクト: JeroenBos/ASDE
		/// <summary> Adds the specified set relation to the knowledge of this set relations tracker. </summary>
		public void Add(SetRelation relation)
		{
			Contract.Requires(relation != null);

			Add(relation.LeftOperand, relation.RightOperand, relation.Relation);
		}