9 references to Create
Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ResultProvider.UnitTests (6)
DynamicFlagsCustomTypeInfoTests.cs (1)
170var customTypeInfo = DkmClrCustomTypeInfo.Create(Guid.NewGuid(), new ReadOnlyCollection<byte>(new byte[] { 0x01 }));
TupleTests.cs (4)
1055var typeInfo = DkmClrCustomTypeInfo.Create(Guid.Empty, new ReadOnlyCollection<byte>(new byte[0])); 1065typeInfo = DkmClrCustomTypeInfo.Create(Guid.Empty, null); 1076typeInfo = DkmClrCustomTypeInfo.Create(typeInfoId, new ReadOnlyCollection<byte>(new byte[] { 0xf0, 0x0f })); 1086typeInfo = DkmClrCustomTypeInfo.Create(typeInfoId, null);
TypeNameFormatterTests.cs (1)
399var typeInfo = DkmClrCustomTypeInfo.Create(Guid.NewGuid(), new ReadOnlyCollection<byte>(new byte[] { 1 }));
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (2)
CustomTypeInfo.cs (2)
23return (payload == null) ? null : DkmClrCustomTypeInfo.Create(PayloadTypeId, payload); 43return DkmClrCustomTypeInfo.Create(PayloadTypeId, new ReadOnlyCollection<byte>(CopyBytes(payload, 0, length)));
Microsoft.CodeAnalysis.VisualBasic.ExpressionEvaluator.ResultProvider.UnitTests (1)
TypeNameFormatterTests.vb (1)
279Dim typeInfo = DkmClrCustomTypeInfo.Create(Guid.NewGuid(), New ReadOnlyCollection(Of Byte)({1}))