From c9bce45a01cc8861ec7c88e84d947ed6ebc8f7d1 Mon Sep 17 00:00:00 2001 From: csharptest Date: Sun, 14 Oct 2012 23:03:24 -0500 Subject: Portability Changes - Removing uses of Enum to IConvertible from CodedIOStreams, Removed MessageStreamIterator.FromFile on non-client profiles, Removed use of Path.GetFileName, Removed uses of Converter delegate, Removed Guid/DispId options from test protos --- src/ProtocolBuffers/ICodedInputStream.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/ProtocolBuffers/ICodedInputStream.cs') diff --git a/src/ProtocolBuffers/ICodedInputStream.cs b/src/ProtocolBuffers/ICodedInputStream.cs index a3c0f30b..b39b602d 100644 --- a/src/ProtocolBuffers/ICodedInputStream.cs +++ b/src/ProtocolBuffers/ICodedInputStream.cs @@ -171,7 +171,7 @@ namespace Google.ProtocolBuffers /// [CLSCompliant(false)] bool ReadEnum(ref T value, out object unknown) - where T : struct, IComparable, IFormattable, IConvertible; + where T : struct, IComparable, IFormattable; /// /// Reads an sfixed32 field value from the stream. @@ -214,7 +214,7 @@ namespace Google.ProtocolBuffers /// [CLSCompliant(false)] void ReadEnumArray(uint fieldTag, string fieldName, ICollection list, out ICollection unknown) - where T : struct, IComparable, IFormattable, IConvertible; + where T : struct, IComparable, IFormattable; /// /// Reads a set of messages using the as a template. T is not guaranteed to be -- cgit v1.2.3