System.Resources.ResourceWriter.ResourceWriter C# (CSharp) Method

ResourceWriter() public method

public ResourceWriter ( Stream stream ) : System
stream Stream
return System
        public ResourceWriter(Stream stream)
        {
            if (stream == null)
                throw new ArgumentNullException(nameof(stream));
            if (!stream.CanWrite)
                throw new ArgumentException(SR.Argument_StreamNotWritable);
            Contract.EndContractBlock();
            _output = stream;
            _resourceList = new SortedDictionary<string, object>(FastResourceComparer.Default);
            _caseInsensitiveDups = new Dictionary<string, object>(StringComparer.OrdinalIgnoreCase);
        }

Same methods

ResourceWriter::ResourceWriter ( System stream )
ResourceWriter::ResourceWriter ( string fileName )
ResourceWriter::ResourceWriter ( string fileName ) : System