aboutsummaryrefslogtreecommitdiff
path: root/csharp/ProtocolBuffers/IMessage.cs
diff options
context:
space:
mode:
Diffstat (limited to 'csharp/ProtocolBuffers/IMessage.cs')
-rw-r--r--csharp/ProtocolBuffers/IMessage.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/csharp/ProtocolBuffers/IMessage.cs b/csharp/ProtocolBuffers/IMessage.cs
index da9aa9f3..abb29f72 100644
--- a/csharp/ProtocolBuffers/IMessage.cs
+++ b/csharp/ProtocolBuffers/IMessage.cs
@@ -57,8 +57,9 @@ namespace Google.ProtocolBuffers {
/// <summary>
/// Obtains the value of the given field, or the default value if
- /// it isn't set. For value type fields including enums, the boxed
- /// value is returned. For embedded message fields, the sub-message
+ /// it isn't set. For value type fields, the boxed value is returned.
+ /// For enum fields, the EnumValueDescriptor for the enum is returned.
+ /// For embedded message fields, the sub-message
/// is returned. For repeated fields, an IList&lt;T&gt; is returned.
/// </summary>
object this[FieldDescriptor field] { get; }