Emveepee.Addin.ProfilerExecutionOptions.Clone C# (CSharp) Method

Clone() public method

public Clone ( ) : ProfilerExecutionOptions
return ProfilerExecutionOptions
        public ProfilerExecutionOptions Clone()
        {
            ProfilerExecutionOptions result = new ProfilerExecutionOptions ();
            result.start_enabled = start_enabled;
            result.mode = mode;
            return result;
        }
ProfilerExecutionOptions