Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. How can I call static method using late binding

How can I call static method using late binding

Scheduled Pinned Locked Moved C#
questioncsharpwpfwcftutorial
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • J Offline
    J Offline
    Johny Ng
    wrote on last edited by
    #1

    Hey folks, May be this is a stupid question I am pretty new to C#. I just wonder how can I call a static method using late binding. For example, I have a class with a private constructor and a static method. Is it possible? if yes, then how? Thanks a bunch.

    W 1 Reply Last reply
    0
    • J Johny Ng

      Hey folks, May be this is a stupid question I am pretty new to C#. I just wonder how can I call a static method using late binding. For example, I have a class with a private constructor and a static method. Is it possible? if yes, then how? Thanks a bunch.

      W Offline
      W Offline
      Werdna
      wrote on last edited by
      #2

      It's possible, you just have to specify BindingFlags.Static Type type = typeof(SomeType); MethodInfo method = type.GetMethod("SomeStaticMethod", BindingsFlags.Static | BindingFlags.Public | BindingFlags.InvokeMethod); method.Invoke(null, new object[]{});

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups