2 writes to FullName
Microsoft.CodeAnalysis.Test.Utilities (2)
Metadata\ModuleData.cs (2)
33FullName = assembly.FullName; 40FullName = fullName;
13 references to FullName
Microsoft.CodeAnalysis.Test.Utilities (13)
Compilation\IRuntimeEnvironment.cs (1)
221fullNameSet.Add(moduleData.Id.FullName);
Metadata\ModuleData.cs (2)
46return $"{FullName} - {Mvid}"; 62public string FullName => Id.FullName;
Platform\Desktop\RuntimeAssemblyManager.cs (7)
171throw new Exception($"Two modules of name {assemblyData.Id.FullName} have different MVID"); 206_fullNameToAssemblyDataMap.Add(assemblyData.Id.FullName, assemblyData); 229if (_fullNameToAssemblyDataMap.TryGetValue(id.FullName, out assemblyData)) 244fullMatch = _preloadedSet.Contains(id.SimpleName) || StringComparer.OrdinalIgnoreCase.Equals(id.FullName, assemblyData.Id.FullName); 262throw new Exception($"Cannot get bytes for preloaded Assembly {data.Id.FullName}"); 355var assembly = GetAssembly(id.FullName, reflectionOnly: true);
Platform\Desktop\RuntimeModuleData.cs (3)
40var fullName = info.GetString(nameof(Id.FullName)); 48info.AddValue(nameof(Id.FullName), Id.FullName);