Fanx.Fcode.FPod.FPod C# (CSharp) Méthode

FPod() public méthode

public FPod ( string podName, FStore store ) : System
podName string
store FStore
Résultat System
        public FPod(string podName, FStore store)
        {
            if (store != null) store.fpod = this;
              this.m_podName    = podName;
              this.m_store      = store;
              this.m_names      = new FTable.Names(this);
              this.m_typeRefs   = new FTable.TypeRefs(this);
              this.m_fieldRefs  = new FTable.FieldRefs(this);
              this.m_methodRefs = new FTable.MethodRefs(this);
        }