예제 #1
0
파일: NCldrBuilder.cs 프로젝트: hmvs/NCLDR
        public static void Build(
            string cldrPath,
            string ncldrPath,
            NCldrBuilderProgressEventHandler progress = null,
            NCldrBuilderOptions options = null)
        {
            INCldrFileDataSource dataSource = new NCldrBinaryFileDataSource();
            dataSource.NCldrDataPath = ncldrPath;

            Build(cldrPath, dataSource, progress, options);
        }
예제 #2
0
파일: NCldrBuilder.cs 프로젝트: pifta/NCLDR
        public static void Build(
            string cldrPath,
            string ncldrPath,
            NCldrBuilderProgressEventHandler progress = null,
            NCldrBuilderOptions options = null)
        {
            INCldrFileDataSource dataSource = new NCldrBinaryFileDataSource();

            dataSource.NCldrDataPath = ncldrPath;

            Build(cldrPath, dataSource, progress, options);
        }