using System;
using System.Collections.Specialized;
using System.Xml;
using System.Text;
using System.Text.RegularExpressions;
namespace RSBuild
{
///
/// Utility methods.
///
public static class Util
{
///
/// Replaces the specified string to replace.
///
/// The string to replace.
/// The old value.
/// The new value.
///
public static string Replace(string stringToReplace, string oldValue, string newValue)
{
return Regex.Replace(stringToReplace, oldValue, newValue, RegexOptions.IgnoreCase | RegexOptions.Compiled);
}
}
}