/// <summary>
            /// Builds a <see cref="OptExporter"/> instance.
            /// </summary>
            /// <returns>Returns a <see cref="OptExporter"/>.</returns>
            public OptExporter Build()
            {
                OptExporter instance = this.instance;

                this.instance = null;
                return(instance);
            }
 private Builder()
 {
     this.instance = new OptExporter();
 }