blob: 96f67ed47df31bd1c46b6f30aa8919ee64ddec74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
using System;
using System.Globalization;
internal static class RS
{
public static string Format(string format, params object[] args)
{
return String.Format(CultureInfo.CurrentCulture, format, args);
}
}
|