public ProfilingOptions( ProfilingOptions Src, bool bShouldLockOptions ) : this() { for( int i = 0; i < CheckBoxes.Length; i++ ) { CheckBoxes[ i ].Checked = Src.CheckBoxes[ i ].Checked; } if( bShouldLockOptions ) { LockOptions(); } }
public ProfilingOptions(ProfilingOptions Src, bool bShouldLockOptions) : this() { for (int i = 0; i < CheckBoxes.Length; i++) { CheckBoxes[i].Checked = Src.CheckBoxes[i].Checked; } if (bShouldLockOptions) { LockOptions(); } }
/// <summary> Constructor, associating this stream info with a filename. </summary> /// <param name="InFileName"> FileName to use for this stream </param> public FStreamInfo(string InFileName, ProfilingOptions InCreationOptions) { FileName = InFileName; CreationOptions = new ProfilingOptions(InCreationOptions, true); }
/// <summary> Constructor, associating this stream info with a filename. </summary> /// <param name="InFileName"> FileName to use for this stream </param> public FStreamInfo( string InFileName, ProfilingOptions InCreationOptions ) { FileName = InFileName; CreationOptions = new ProfilingOptions( InCreationOptions, true ); }