best way to check which on system app is runing ?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • alienv
    New Member
    • Jul 2007
    • 1

    best way to check which on system app is runing ?

    can someone show a best way to check which on system app is runing ? (mono - dotnet).

    is there a way to use sth like that :
    Code:
    #if(MONO)
    using Mono.Something.Something
    #else
    using System.Something.Something
    how to define that MONO ?

    thanks
  • GaryTexmo
    Recognized Expert Top Contributor
    • Jul 2009
    • 1501

    #2
    Check out this link...
    “Ya no somos lo suficientemente felices para pedir belleza; por el momento sólo deseamos lo útil. La sociedad va a pasar no sé cuántos siglos persiguiendo lo


    The registry one is quite interesting... though you'd have to check the value without using .NET if you don't know if it's installed. You'd probably have to do this in some kind of loader so that you could set things up appropriately. Note that I'm speculating here... I've never done this, just trying to help out :)

    I'll let you google search for mono detection.

    Comment

    Working...