Author Topic: Why I choose SDK over anything else  (Read 3222 times)

Patrice Terrier

  • Administrator
  • *****
  • Posts: 1980
    • zapsolution
Why I choose SDK over anything else
« on: February 09, 2020, 05:16:36 pm »
Because

  • SDK is the only way to have direct access to the core Windows API.
  • It doesn't use a propriatary syntax nor it hides you what is going on behind the hood.
  • It is the only common denominator understood by all compilers including DotNET.
  • It keeps your code small and fast.
  • It allows you to write procedural code that is not harder to learn than OOP.
  • It allows you to use ALL the Windows controls.
  • It is easy to use with third party DLL, because DLL are the core meat of SDK.
  • It handles ALL the Windows message and structures.
  • It is not a dead end, because Microsoft despite what they say is always enhancing it.
  • You are no tied to anybody else to write your own controls when you need them.
  • There are literally millions of SDK source code examples over the NET.

And last, but not the least, ask you why third party addon providers are mainly SDK coders.

« Last Edit: February 10, 2020, 10:21:21 am by Patrice Terrier »
Patrice
(Always working with the latest Windows version available...)

Patrice Terrier

  • Administrator
  • *****
  • Posts: 1980
    • zapsolution
Re: Why I choose SDK over anything else
« Reply #1 on: February 09, 2020, 06:23:33 pm »
Amen!
Patrice
(Always working with the latest Windows version available...)