System.Globalization.Localization.Localization C# (CSharp) Method

Localization() public method

Creates a new Localization, populated from a .po file at the supplied filePath. If requested, will also load comments from that file.
public Localization ( string filePath, bool loadComments ) : System
filePath string
loadComments bool If true, will populate comments so that this .po file can be saved again exactly as it was loaded.
return System
        public Localization(string filePath, bool loadComments)
            : this()
        {
            LoadComments = loadComments;
            LoadFromFile(filePath);
        }

Same methods

Localization::Localization ( ) : System
Localization::Localization ( string filePath ) : System