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