/// <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); }