aboutsummaryrefslogtreecommitdiff
path: root/src/ProtocolBuffers/NameHelpers.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ProtocolBuffers/NameHelpers.cs')
-rw-r--r--src/ProtocolBuffers/NameHelpers.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ProtocolBuffers/NameHelpers.cs b/src/ProtocolBuffers/NameHelpers.cs
index 9cf25699..ddaf1a3f 100644
--- a/src/ProtocolBuffers/NameHelpers.cs
+++ b/src/ProtocolBuffers/NameHelpers.cs
@@ -39,13 +39,13 @@ namespace Google.ProtocolBuffers {
/// <summary>
/// Helpers for converting names to pascal case etc.
/// </summary>
- internal class NameHelpers {
+ public class NameHelpers {
- internal static string UnderscoresToPascalCase(string input) {
+ public static string UnderscoresToPascalCase(string input) {
return UnderscoresToPascalOrCamelCase(input, true);
}
- internal static string UnderscoresToCamelCase(string input) {
+ public static string UnderscoresToCamelCase(string input) {
return UnderscoresToPascalOrCamelCase(input, false);
}