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

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