Advertisement
Guest User

Untitled

a guest
Jan 1st, 2020
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. .assembly extern System.Runtime
  2. {
  3.   .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A )
  4.   .ver 4:0:0:0
  5. }
  6.  
  7. .assembly extern System.Private.CoreLib
  8. {
  9.   .publickeytoken = ( 7C EC 85 D7 BE A7 79 8E )
  10.   .ver 4:0:0:0
  11. }
  12.  
  13. .assembly Uuid.CoreLib
  14. {
  15.   .ver 1:0:0:0
  16.  
  17.   .custom instance void System.Runtime.CompilerServices.IgnoresAccessChecksToAttribute::.ctor(string) = (
  18.     01 00 16 53 79 73 74 65 6d 2e 50 72 69 76 61 74
  19.     65 2e 43 6f 72 65 4c 69 62 00 00
  20.   )
  21. }
  22.  
  23. .module Uuid.CoreLib.dll
  24.  
  25. .class public abstract sealed auto ansi beforefieldinit
  26.   Uuid.CoreLib.Internal
  27.     extends [System.Runtime]System.Object
  28. {
  29.  
  30.   .method public hidebysig static void
  31.     GetRandomBytes(
  32.       unsigned int8* buffer,
  33.       int32 length
  34.     ) cil managed
  35.   {
  36.     .maxstack 8
  37.     ldarg.0      // buffer
  38.     ldarg.1      // length
  39.     call         void [System.Private.CoreLib]Interop::GetRandomBytes(unsigned int8*, int32)
  40.     ret
  41.  
  42.   } // end of method Uuid.CoreLib.Internal::GetRandomBytes
  43. } // end of class Uuid.CoreLib.Internal
  44.  
  45. .class public auto ansi beforefieldinit
  46.   System.Runtime.CompilerServices.IgnoresAccessChecksToAttribute
  47.     extends [System.Runtime]System.Attribute
  48. {
  49.   .custom instance void [System.Runtime]System.AttributeUsageAttribute::.ctor(valuetype [System.Runtime]System.AttributeTargets)
  50.     = (
  51.       01 00 01 00 00 00 01 00 54 02 0d 41 6c 6c 6f 77 // ........T..Allow
  52.       4d 75 6c 74 69 70 6c 65 01                      // Multiple.
  53.     )
  54.     // int32(1) // 0x00000001
  55.     // property bool 'AllowMultiple' = bool(true)
  56.  
  57.   .field private initonly string '<AssemblyName>k__BackingField'
  58.   .custom instance void [System.Runtime]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor()
  59.     = (01 00 00 00 )
  60.  
  61.   .method public hidebysig specialname rtspecialname instance void
  62.     .ctor(
  63.       string assemblyName
  64.     ) cil managed
  65.   {
  66.     .maxstack 8
  67.  
  68.     // [25 9 - 25 67]
  69.     IL_0000: ldarg.0      // this
  70.     IL_0001: call         instance void [System.Runtime]System.Attribute::.ctor()
  71.  
  72.     // [27 13 - 27 41]
  73.     IL_0006: ldarg.0      // this
  74.     IL_0007: ldarg.1      // assemblyName
  75.     IL_0008: stfld        string System.Runtime.CompilerServices.IgnoresAccessChecksToAttribute::'<AssemblyName>k__BackingField'
  76.  
  77.     // [28 9 - 28 10]
  78.     IL_000d: ret
  79.  
  80.   } // end of method IgnoresAccessChecksToAttribute::.ctor
  81.  
  82.   .method public hidebysig specialname instance string
  83.     get_AssemblyName() cil managed
  84.   {
  85.     .custom instance void [System.Runtime]System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor()
  86.       = (01 00 00 00 )
  87.     .maxstack 8
  88.  
  89.     // [30 38 - 30 42]
  90.     IL_0000: ldarg.0      // this
  91.     IL_0001: ldfld        string System.Runtime.CompilerServices.IgnoresAccessChecksToAttribute::'<AssemblyName>k__BackingField'
  92.     IL_0006: ret
  93.  
  94.   } // end of method IgnoresAccessChecksToAttribute::get_AssemblyName
  95.  
  96.   .property instance string AssemblyName()
  97.   {
  98.     .get instance string System.Runtime.CompilerServices.IgnoresAccessChecksToAttribute::get_AssemblyName()
  99.   } // end of property IgnoresAccessChecksToAttribute::AssemblyName
  100. } // end of class System.Runtime.CompilerServices.IgnoresAccessChecksToAttribute
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement