ibennz

manually

Jun 3rd, 2015
357
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.55 KB | None | 0 0
  1.  Dim asm As Reflection.AssemblyName() = System.Reflection.Assembly.GetExecutingAssembly().GetReferencedAssemblies()
  2.         For Each n As Reflection.AssemblyName In asm
  3.  
  4.             If (n.Name.ToLower() = "system.drawing") Then
  5.                 For Each t As Type In Reflection.Assembly.Load(n).GetTypes()
  6.                     If (t.FullName = "System.Drawing.Bitmap") Then
  7.                         Dim BitmapAssembly As Reflection.Assembly = Reflection.Assembly.Load(n)
  8.  
  9.                     End If
  10.                 Next
  11.             End If
  12.  
  13.         Next
Advertisement
Add Comment
Please, Sign In to add comment