c++ - identifying the architecture of an application -


is there way figure out architecture application implementing?

i'm trying figure out whether either win32, wpf or windows form being used 3rd party application.

thanks help

you @ exes , dlls of application, e.g. using ilspy.

wpf , winforms far know limited .net framework. if not .net exe, , ilspy not parse it, win32.

if .net exe, @ references. if wpf specific dlls referenced, wpf. if winforms specific dlls, winforms. if both, need trace program starting main method find evidence, api used.

but either way, no strong evidence. both apis mixed, , there windows or elements of each used. since winforms wrapper of native win32 api, whenever use winforms use win32 api.

so depends on need know.


Comments

Popular posts from this blog

android - Why am I getting the message 'Youractivity.java is not an activity subclass or alias' -

python - How do I create a list index that loops through integers in another list -

c# - “System.Security.Cryptography.CryptographicException: Keyset does not exist” when reading private key from remote machine -