TranslateTool.PoEntry.PoEntry C# (CSharp) Méthode

PoEntry() public méthode

public PoEntry ( List locations, string nonLocalized, string localized ) : System
locations List
nonLocalized string
localized string
Résultat System
        public PoEntry(List<PoLocation> locations, string nonLocalized, string localized)
        {
            this.Locations = locations;
            this.NonLocalized = nonLocalized;
            this.Localized = localized;
        }
PoEntry