1 2 3 4 5 6 7 8 9 10 |
class Program { // https://learn.microsoft.com/en-us/dotnet/standard/assembly/find-fully-qualified-name public static void Main() { Type t = typeof(System.Threading.Interlocked); string s = t.Assembly.FullName.ToString(); Console.WriteLine(s); } } |