3 instantiations of TypeWithTwoMembers
Microsoft.CodeAnalysis.UnitTests (3)
ObjectSerializationTests.cs (3)
236ObjectBinder.RegisterTypeReader(typeof(TypeWithTwoMembers<T, S>), r => new TypeWithTwoMembers<T, S>(r)); 336TestRoundTripValue(new TypeWithTwoMembers<T, S>(value1, value2)); 1173instances.Add(new TypeWithTwoMembers<int, string>(i, i.ToString()));
7 references to TypeWithTwoMembers
Microsoft.CodeAnalysis.UnitTests (7)
ObjectSerializationTests.cs (7)
209private class TypeWithTwoMembers<T, S> : IObjectWritable, IEquatable<TypeWithTwoMembers<T, S>> 236ObjectBinder.RegisterTypeReader(typeof(TypeWithTwoMembers<T, S>), r => new TypeWithTwoMembers<T, S>(r)); 253return Equals(obj as TypeWithTwoMembers<T, S>); 256public bool Equals(TypeWithTwoMembers<T, S> other) 1168var instances = new List<TypeWithTwoMembers<int, string>>(); 1181foreach (var instance in instances) 1193foreach (var instance in instances)