예제 #1
0
        /// <summary>Crates a IniFileValue object from it's data.</summary>
        /// <param name="key">Value name.</param>
        /// <param name="value">Associated value.</param>
        public static IniFileValue FromData(string key, string value)
        {
            IniFileValue ret = new IniFileValue();

            ret.key = key; ret.value = value;
            ret.FormatDefault();
            return(ret);
        }
예제 #2
0
        /// <summary>Creates a new IniFileValue object basing on a key and a value and the formatting  of this IniFileValue.</summary>
        /// <param name="key">Name of value</param>
        /// <param name="value">Value</param>
        public IniFileValue CreateNew(string key, string value)
        {
            IniFileValue ret = new IniFileValue();

            ret.key = key; ret.value = value;
            if (IniFileSettings.PreserveFormatting)
            {
                ret.formatting = formatting;
                if (IniFileSettings.AllowInlineComments)
                {
                    ret.inlineCommentChar = inlineCommentChar;
                }
                ret.Format();
            }
            else
            {
                ret.FormatDefault();
            }
            return(ret);
        }
 /// <summary>Creates a new IniFileValue object basing on a key and a value and the formatting  of this IniFileValue.</summary>
 /// <param name="key">Name of value</param>
 /// <param name="value">Value</param>
 public IniFileValue CreateNew(string key, string value)
 {
     IniFileValue ret = new IniFileValue();
     ret.key = key; ret.value = value;
     if (IniFileSettings.PreserveFormatting)
     {
         ret.formatting = formatting;
         if (IniFileSettings.AllowInlineComments)
             ret.inlineCommentChar = inlineCommentChar;
         ret.Format();
     }
     else
         ret.FormatDefault();
     return ret;
 }
 /// <summary>Crates a IniFileValue object from it's data.</summary>
 /// <param name="key">Value name.</param>
 /// <param name="value">Associated value.</param>
 public static IniFileValue FromData(string key, string value)
 {
     IniFileValue ret = new IniFileValue();
     ret.key = key; ret.value = value;
     ret.FormatDefault();
     return ret;
 }