Mono.Debugger.SourceBuffer.SourceBuffer C# (CSharp) Method

SourceBuffer() public method

public SourceBuffer ( string name, ICollection contents ) : System
name string
contents ICollection
return System
        public SourceBuffer(string name, ICollection contents)
        {
            this.name = name;
            this.contents = new string [contents.Count];
            contents.CopyTo (this.contents, 0);
        }

Same methods

SourceBuffer::SourceBuffer ( string name, string contents ) : System
SourceBuffer