CopyPastor

Detecting plagiarism made easy.

Score: 0.8457572547378943; Reported for: String similarity Open both answers

Possible Plagiarism

Plagiarized on 2018-07-26
by Gauravsa

Original Post

Original - Posted on 2009-09-30
by Ed S.



            
Present in both answers; Present only in the new answer; Present only in the old answer;

class MappedValue { public string SomeString { get; set; } public bool SomeBool { get; set; } } Dictionary<string, MappedValue> myList = new Dictionary<string, MappedValue>;
Other thing is the `Tuple` which is my favorite. **C# 4.0** has dynamic support for *tuples*.
public class Tuple<T, T2, T3> { public Tuple(T first, T2 second, T3 third) { First = first; Second = second; Third = third; } public T First { get; set; } public T2 Second { get; set; } public T3 Third { get; set; } }
class MappedValue { public string SomeString { get; set; } public bool SomeBool { get; set; } } Dictionary<string, MappedValue> myList = new Dictionary<string, MappedValue>;

        
Present in both answers; Present only in the new answer; Present only in the old answer;