File: src\Framework\System\Windows\Markup\Baml2006\BamlBinaryReader.cs | |
Project: wpf\PresentationFramework.csproj (PresentationFramework) |
using System.IO; namespace System.Windows.Baml2006 { class BamlBinaryReader : BinaryReader { public BamlBinaryReader(Stream stream) : base(stream) { } public new int Read7BitEncodedInt() { return base.Read7BitEncodedInt(); } } } |