lw_common.settings_as_string.merge C# (CSharp) Method

merge() public method

public merge ( string other ) : void
other string
return void
        public void merge(string other) {
            settings_as_string_readonly other_sett = new settings_as_string(other);
            merge(other_sett);
        }

Same methods

settings_as_string::merge ( settings_as_string_readonly other_sett ) : void

Usage Example

示例#1
0
 public void merge_setings(settings_as_string_readonly other)
 {
     settings_.merge(other);
 }
All Usage Examples Of lw_common.settings_as_string::merge