Rev | Line | |
---|
[12503] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Text;
|
---|
| 5 |
|
---|
| 6 | namespace Microsoft.Research.DynamicDataDisplay.Common.Auxiliary
|
---|
| 7 | {
|
---|
| 8 | internal static class StringExtensions
|
---|
| 9 | {
|
---|
| 10 | public static string Format(this string formatString, object param)
|
---|
| 11 | {
|
---|
| 12 | return String.Format(formatString, param);
|
---|
| 13 | }
|
---|
| 14 |
|
---|
| 15 | public static string Format(this string formatString, object param1, object param2)
|
---|
| 16 | {
|
---|
| 17 | return String.Format(formatString, param1, param2);
|
---|
| 18 | }
|
---|
| 19 | }
|
---|
| 20 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.