init() private method

private init ( ) : void
return void
示例#1
0
        public static aliases from_enter_separated_string(string s)
        {
            var result = new aliases()
            {
                sett_ = new settings_as_string(s)
            };

            result.init();
            // this will force matching all log columns to our Logwizard columns
            var names = result.sett_.names().ToList();

            foreach (var name in names)
            {
                result.to_info_type(name, names);
            }
            return(result);
        }
示例#2
0
 public static aliases from_enter_separated_string(string s) {
     var result = new aliases() { sett_ = new settings_as_string(s) };
     result.init();
     // this will force matching all log columns to our Logwizard columns
     var names = result.sett_.names().ToList();
     foreach (var name in names)
         result.to_info_type(name, names);
     return result;
 }