SimpleFramework.Xml.Core.Builder.Builder C# (CSharp) Метод

Builder() публичный Метод

Constructor for the Builder object. This is used to create a factory like object used for instantiating objects. Each builder will score its suitability using the parameters it is provided.
public Builder ( Constructor factory, Index index ) : System.Collections.Generic
factory Constructor /// this is the factory used for instantiation ///
index Index /// this is the map of parameters that are declared ///
Результат System.Collections.Generic
      public Builder(Constructor factory, Index index) {
         this.list = index.Parameters;
         this.factory = factory;
         this.index = index;
      }
      /// <summary>