//---------------------------------------------------------------------
// This file is part of the Background Motion solution.
//
// Copyright (C) Mindscape (TM). All rights reserved.
// http://www.mindscape.co.nz
//
// THIS CODE AND INFORMATION ARE PROVIDED AS IS WITHOUT WARRANTY OF ANY
// KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
// PARTICULAR PURPOSE.
//---------------------------------------------------------------------
using System.Globalization;
namespace Mindscape.BackgroundMotion.Core.Utilities
{
///
/// A helper class which provides utilities for working with strings
///
public static class StringUtils
{
///
/// Formats a string to the current culture.
///
/// The format string.
/// The objects.
///
public static string FormatCurrentCulture(string formatString, params object[] objects)
{
return string.Format(CultureInfo.CurrentCulture, formatString, objects);
}
}
}