3c1f479b9d
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
22 lines
420 B
C#
22 lines
420 B
C#
using System.Globalization;
|
|
|
|
namespace System
|
|
{
|
|
partial class Environment
|
|
{
|
|
internal static string GetResourceString (string key)
|
|
{
|
|
return key;
|
|
}
|
|
|
|
internal static string GetResourceString (string key, CultureInfo culture)
|
|
{
|
|
return key;
|
|
}
|
|
|
|
internal static string GetResourceString (string key, params object[] values)
|
|
{
|
|
return string.Format (CultureInfo.InvariantCulture, key, values);
|
|
}
|
|
}
|
|
} |