diff --git a/csharp/src/Google.Protobuf/MessageParser.cs b/csharp/src/Google.Protobuf/MessageParser.cs
index e53345917..66d441359 100644
--- a/csharp/src/Google.Protobuf/MessageParser.cs
+++ b/csharp/src/Google.Protobuf/MessageParser.cs
@@ -208,6 +208,20 @@ namespace Google.Protobuf
return message;
}
+ ///
+ /// Parses a message from a byte array slice.
+ ///
+ /// The byte array containing the message. Must not be null.
+ /// The offset of the slice to parse.
+ /// The length of the slice to parse.
+ /// The newly parsed message.
+ public new T ParseFrom(byte[] data, int offset, int length)
+ {
+ T message = factory();
+ message.MergeFrom(data, offset, length);
+ return message;
+ }
+
///
/// Parses a message from the given byte string.
///