summaryrefslogtreecommitdiff
path: root/proxies/string_extensions.cs
diff options
context:
space:
mode:
Diffstat (limited to 'proxies/string_extensions.cs')
-rw-r--r--proxies/string_extensions.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/proxies/string_extensions.cs b/proxies/string_extensions.cs
new file mode 100644
index 0000000..db7322d
--- /dev/null
+++ b/proxies/string_extensions.cs
@@ -0,0 +1,12 @@
+using System.Globalization;
+
+namespace proxies
+{
+ public static class string_extensions
+ {
+ public static string format_with(this string formatted_message, params object[] arguments)
+ {
+ return string.Format(CultureInfo.InvariantCulture, formatted_message, arguments);
+ }
+ }
+} \ No newline at end of file