What Programming Languages Are Best for Closed Source Software?

0
7
Asked By TechWiz123 On

I'm curious about which programming languages are commonly used for developing closed source proprietary software. For native code compilation, do we still see a lot of C and C++ being used?

Also, I've heard that languages like C#.NET, Java, and Python often require obfuscators for code security, but I'm unsure about their effectiveness. What do you all think?

4 Answers

Answered By ByteBender88 On

Honestly, if you want to protect your code, you should involve legal departments. Bigger companies usually just resort to lawsuits if their code gets leaked. And about C#, it can compile to native code and work with other languages, so that’s something to consider too.

Answered By NinjaCoder55 On

The choice of language really depends on the project needs. For us, we predominantly use Go, but we also have some components in C. In regards to obfuscators, they're tricky—setting them up can be a hassle and might actually trigger antivirus software, plus they can slow your code down.

Answered By CodeMaster99 On

When it comes to closed source software, you can use the same languages as open source. People don’t generally stress too much about obfuscation—it’s not always necessary.

Answered By DevGuru42 On

Closed source software is more about licensing and making source code unavailable than it is about the programming language. I've seen closed-source applications written in a variety of languages, including C++, .NET, and JavaScript.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.