コード例 #1
0
ファイル: Places.cs プロジェクト: dw4dev/Phalanger
		/// <summary>
		/// Emits code that stores a value to this storage place.
		/// </summary>
		/// <param name="il">The <see cref="ILEmitter"/> to emit the code to.</param>
		public void EmitStore(ILEmitter il)
		{
			if (holder != null) il.Store(holder);
			il.Store(source);
		}