コード例 #1
0
 /// <summary>
 /// Applies the state from the specified instance to the loaded instance.  This overwrites the items and properties.
 /// </summary>
 /// <remarks>
 /// Used when we transfer results and state from a previous node to the current one.
 /// </remarks>
 internal void ApplyTransferredState(ProjectInstance instance)
 {
     if (instance != null)
     {
         _project.UpdateStateFrom(instance);
     }
 }