Page 1 of 3 123 LastLast
Results 1 to 40 of 83

Thread: Why people prefer VB.NET or C# instead of Delphi?

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    May 2007
    Posts
    278

    Question Why people prefer VB.NET or C# instead of Delphi?

    I have read a lot and still can't understand why people prefer VB.NET or C# instead of Delphi? And why Delphi is losing popularity?

    1) Delphi is easy to understand (not like C++ or ASM).
    2) Because it is easy to understand, you can reduce coding time and build applications faster (not like C++ or ASM).
    3) Delphi has less limitations than VB.NET or C#.
    4) Delphi is not .NET based.
    5) Applications written in Delphi runs faster than VB.NET or C# applications.
    6) It is much harder to decompil Delphi applications, not like VB.NET or C# applications.

    At the moment I think that Delphi is something between C# and C++ or maybe I'm totally wrong?

    Delphi isn't Microsoft product, is it the case why people prefer VB.NET or C# instead of Delphi?

  2. #2
    Super Moderator Shaggy Hiker's Avatar
    Join Date
    Aug 2002
    Location
    Idaho
    Posts
    38,989

    Re: Why people prefer VB.NET or C# instead of Delphi?

    Delphi has MASSIVELY less exposure than any .NET language. That, alone, might be the cause of the choice. There are plenty of Microsoft shops out there, and TONS of .NET jobs out there, but how many Delphi shops are there, and how many Delphi jobs?

    Throughout history, especially tech history, it has not been the case that the best competitor always won, so you need look no farther than that. However, I would address your points like this:

    #1) Delphi is easier to understand than ASM? I should bloody well hope so. There's a reason that ASM is not a very popular language for RAD. The same could be said, to a lesser extent, about C++. Both of those languages are all about speed and not so much about ease of use. Delphi was never intended to be a head to head competitor to either.

    #2) Again, so what. Why would you compare development time to either C++ or ASM. If you are writing in either of those languages, development time is not a driving interest. You are generally after the absolute fastest possible speed....or you are writing low level device drivers.

    #3) Like what? Less limitations? How about fewer opportunities to get paid for your efforts? That seems like the biggest limitation driving most of this, but I'd be interested to hear what other limitations you see that .NET languages have that Delphi doesn't have, other than the next three points you list.

    #4) How is that a benefit? Delphi isn't pasta based, either, but that just means that I don't intend to try it with spaghetti sauce and cheese.

    #5) Can this be compared accurately, or is it just marketing hype? Has anybody ever written a well-coded app in both Delphi and one of those .NET languages? In the end, all languages end up as machine code. I'd be more than a bit surprised if you could make a blanket statement that one high-level language created better machine code than another high-level language, so where does this point even come from?

    #6) That's not a concern for 99% of people writing in .NET languages. Heck, it isn't even a concern for 99% of people writing in C++ or ASM. Most people write for internal apps (which have little concern for decompilation), hobbies (which have little concern for anything), trivial (it could be stolen, but who would bother), or other (such as me, where everything I write is technically public domain, so don't bother decompiling, just ask for the source code).


    Most people want to put food on the table, and aren't particularly partisan about the language they use. Quite often, it is the employer who tells them which language they will be using, and they have no particular reason to complain. Look at the fact that C# developers, on average, earn more than VB.NET developers. Considering that the two languages create the same IL, and the languages have almost entirely converged, by now, there is no rational reason for this disparity, yet it persists, and because it persists, there will be an emphasis on C# simply because you can make more cash that way.

    Another point you might consider is: What is the cost for a Delphi development environment. Both C# and VB have pretty complete free versions available, so the cost of learning, trial, and even real use, can be $0. What is it for Delphi?
    My usual boring signature: Nothing

  3. #3

    Thread Starter
    Hyperactive Member
    Join Date
    May 2007
    Posts
    278

    Re: Why people prefer VB.NET or C# instead of Delphi?

    • Delphi's compiler generate Native Code that's mean more speed no JIT (just-in-time compilation).
    • VB.NET and C# depends greatly on .NET framework, anything that is not found in the .NET framework will be difficult to implement. Delphi doesn't require a huge framework to be installed for applications to work. Your compiled result is your application.
    • Delphi binds its RTLibraries (very light ones) directly to WinAPI (which essentially does .Net as well but on one more additional-managed layer).
    • More power with semi-manual memory management (which in many cases is a plus, where on .Net side GC (garbage collector) does not allow you enough freedom or flexibility, apart being non-deterministic in lot of situations...).
    • In C#, all the 3rd party components have to be included and some even have to be registered in the GAC (That on its own is a problem).
    • In .NET for example, you just never know when the GC (garbage collector) will trigger or if a framework update will break your code/security causing your application to no longer work.


    P.S. Not everything is about the money.

  4. #4
    Smooth Moperator techgnome's Avatar
    Join Date
    May 2002
    Posts
    34,532

    Re: Why people prefer VB.NET or C# instead of Delphi?

    Delphi hasn't exactly had the best of histories... changing ownership several times... there was more than once when it's future was in doubt. And that's probably what did it in. The other aspect about it, is what shaggy mentions... cost of entry... I'd love to get into Delphi - I cut my teeth on Pascal, it's predecessor - but I don't have the money to plunk down on an IDE just to play with it.

    -tg

    edit - ps - sometimes yes, it is all about the money....
    * I don't respond to private (PM) requests for help. It's not conducive to the general learning of others.*
    * I also don't respond to friend requests. Save a few bits and don't bother. I'll just end up rejecting anyways.*
    * How to get EFFECTIVE help: The Hitchhiker's Guide to Getting Help at VBF - Removing eels from your hovercraft *
    * How to Use Parameters * Create Disconnected ADO Recordset Clones * Set your VB6 ActiveX Compatibility * Get rid of those pesky VB Line Numbers * I swear I saved my data, where'd it run off to??? *

  5. #5
    Fanatic Member BlindSniper's Avatar
    Join Date
    Jan 2011
    Location
    South Africa
    Posts
    865

    Re: Why people prefer VB.NET or C# instead of Delphi?

    Well, I'm 16 Years old and have been programming in delphi 7(last unmanaged version ?) at school and vb.net at home, so I think I'm a good person to compare them.
    • First of all, the .net standard library dwarfs anything delphi can muster
    • Declaring all the variables at the top of a procedure is not logical, and makes code harder to read.
    • The IDE is ****
    • Debugging is a pain I.E. Very vague error messages. No code highlighting or indentation. Exceptions are also not very informative.
    • The only thing I like about delphi is it's windows(module/class) because it contains almost all windows API declarations.

    Useful CodeBank Entries of mine
    Expand Function
    Code Compiler
    Sudoku Solver
    HotKeyHandler Class

    Read this to get Effective help on VBForums
    Hitchhiker's Guide to Getting Help at VBF

  6. #6

    Thread Starter
    Hyperactive Member
    Join Date
    May 2007
    Posts
    278

    Re: Why people prefer VB.NET or C# instead of Delphi?

    Quote Originally Posted by BlindSniper View Post
    Well, I'm 16 Years old and have been programming in delphi 7(last unmanaged version ?) at school and vb.net at home, so I think I'm a good person to compare them.
    • First of all, the .net standard library dwarfs anything delphi can muster
    • Declaring all the variables at the top of a procedure is not logical, and makes code harder to read.
    • The IDE is ****
    • Debugging is a pain I.E. Very vague error messages. No code highlighting or indentation. Exceptions are also not very informative.
    • The only thing I like about delphi is it's windows(module/class) because it contains almost all windows API declarations.
    But what about Delphi XE2 ?

  7. #7
    Smooth Moperator techgnome's Avatar
    Join Date
    May 2002
    Posts
    34,532

    Re: Why people prefer VB.NET or C# instead of Delphi?

    Must be nice to have a job that pays well enough that you can afford to play around with something like that... I looked at the price of it... geezes! It's no wonder Delphi can't gain any traction... it's only for the big boys...

    -tg
    * I don't respond to private (PM) requests for help. It's not conducive to the general learning of others.*
    * I also don't respond to friend requests. Save a few bits and don't bother. I'll just end up rejecting anyways.*
    * How to get EFFECTIVE help: The Hitchhiker's Guide to Getting Help at VBF - Removing eels from your hovercraft *
    * How to Use Parameters * Create Disconnected ADO Recordset Clones * Set your VB6 ActiveX Compatibility * Get rid of those pesky VB Line Numbers * I swear I saved my data, where'd it run off to??? *

  8. #8

    Thread Starter
    Hyperactive Member
    Join Date
    May 2007
    Posts
    278

    Re: Why people prefer VB.NET or C# instead of Delphi?

    Quote Originally Posted by techgnome View Post
    Must be nice to have a job that pays well enough that you can afford to play around with something like that... I looked at the price of it... geezes! It's no wonder Delphi can't gain any traction... it's only for the big boys...

    -tg
    Yes, I agree, looking from financial side it is disadvantage...
    But what you think about technical side of Delphi comparing it to C# or VB.NET ?

  9. #9
    Fanatic Member BlindSniper's Avatar
    Join Date
    Jan 2011
    Location
    South Africa
    Posts
    865

    Re: Why people prefer VB.NET or C# instead of Delphi?

    I See Delphi as stuck between two worlds, can't develop applications as fast as vb.net, and it is also slower than C++ or ASM, so why is it here ?

    Useful CodeBank Entries of mine
    Expand Function
    Code Compiler
    Sudoku Solver
    HotKeyHandler Class

    Read this to get Effective help on VBForums
    Hitchhiker's Guide to Getting Help at VBF

  10. #10

    Thread Starter
    Hyperactive Member
    Join Date
    May 2007
    Posts
    278

    Re: Why people prefer VB.NET or C# instead of Delphi?

    Quote Originally Posted by BlindSniper View Post
    I See Delphi as stuck between two worlds, can't develop applications as fast as vb.net, and it is also slower than C++ or ASM, so why is it here ?
    I think that coding time with Delphi is somewhere between VB.NET and C#.

    Talking about application speed Delphi is slower than C++, but faster than VB.NET or C#.

  11. #11
    Super Moderator Shaggy Hiker's Avatar
    Join Date
    Aug 2002
    Location
    Idaho
    Posts
    38,989

    Re: Why people prefer VB.NET or C# instead of Delphi?

    If you are in .NET, application speed isn't your primary concern. If speed is your concern, then C++ is a better language. After all, if that is your criteria, why settle for a half measure?

    You initially asked why people prefer .NET or C# to Delphi, and that was what I was answering. I have written in C++, VB6, and .NET (along with a few strange, proprietary, languages). I haven't tried Delphi, and based on the price TG alluded to, I don't think I ever will. After all, my job is in .NET, so that's what I will be using for work, and it isn't up to me. Does that mean that I prefer .NET? No, it doesn't really mean anything, nor can I even compare to Delphi, but neither can I justify buying it, since it would have to come out of my own pocket and only be for hobby/personal use. That's probably what drives most people. Arguing about the merits of a language are pointless if you don't get to choose which language you use.

    As for my hobby, which is robotics, what tools does Delphi have for interfacing with robots? MS has the Robotics Lab (which I haven't used), and there is an excellent robotics brain that has a robust library of .NET classes for interacting with it. Given that the tools are .NET, would it make any sense to use a different language?

    However, let me mention, again, my reply to point #5: How are you testing performance? What test would you cite to show that a well coded Delphi app runs faster than a well coded .NET app? I can think of one obvious test, because I don't like the way that .NET performs integer addition, which Delphi may very well do better, but that's an extremely narrow test. Don't go on about JIT, either, because the compiled code is compiled. The cost is paid only once, not every time you run the program.
    My usual boring signature: Nothing

  12. #12
    Junior Member
    Join Date
    May 2013
    Posts
    16

    Re: Why people prefer VB.NET or C# instead of Delphi?

    I am like you, I don't know why either. I tried .Net and could not make a DLL you can only call one, I tried to make an ISAPI app and found that it has to be a ASPX plugin into IIS of some kind. I am baffled why people use .Net.

    What is also strange is that they seem not to care what Delphi is.

  13. #13
    Junior Member
    Join Date
    May 2013
    Posts
    16

    Re: Why people prefer VB.NET or C# instead of Delphi?

    Quote Originally Posted by Shaggy Hiker View Post
    what tools does Delphi have for interfacing with robots
    The robots driver?

  14. #14
    Smooth Moperator techgnome's Avatar
    Join Date
    May 2002
    Posts
    34,532

    Re: Why people prefer VB.NET or C# instead of Delphi?

    Quote Originally Posted by billegge View Post
    I am like you, I don't know why either. I tried .Net and could not make a DLL you can only call one, I tried to make an ISAPI app and found that it has to be a ASPX plugin into IIS of some kind. I am baffled why people use .Net.

    What is also strange is that they seem not to care what Delphi is.
    Perhaps you were doing something wrong.... I create DLLs all the time... the system I work on is completely driven by them.

    -tg
    * I don't respond to private (PM) requests for help. It's not conducive to the general learning of others.*
    * I also don't respond to friend requests. Save a few bits and don't bother. I'll just end up rejecting anyways.*
    * How to get EFFECTIVE help: The Hitchhiker's Guide to Getting Help at VBF - Removing eels from your hovercraft *
    * How to Use Parameters * Create Disconnected ADO Recordset Clones * Set your VB6 ActiveX Compatibility * Get rid of those pesky VB Line Numbers * I swear I saved my data, where'd it run off to??? *

  15. #15
    Junior Member
    Join Date
    May 2013
    Posts
    16

    Re: Why people prefer VB.NET or C# instead of Delphi?

    Quote Originally Posted by techgnome View Post
    Perhaps you were doing something wrong.... I create DLLs all the time... the system I work on is completely driven by them.

    -tg
    I would bet those are not DLL's you are creating, say for example can you make a DLL in .net then use that DLL in C++ or use it in a language that existed prior to .net?

  16. #16
    Smooth Moperator techgnome's Avatar
    Join Date
    May 2002
    Posts
    34,532

    Re: Why people prefer VB.NET or C# instead of Delphi?

    In that regards, you're correct... they are not STANDARD C-style DLLs... they are .NET Assemblies... but they can also be marked as being "COM Aware" so that, yes, you can register them on a system and use them as an ActiveX Component. And that's hardly justification for saying that you can't create DLLs with it... VB6 has the same problem then... your assumption is that there is one and only one kind of DLL... that's like saying there's only one kind of car. It's just not true.


    -tg
    * I don't respond to private (PM) requests for help. It's not conducive to the general learning of others.*
    * I also don't respond to friend requests. Save a few bits and don't bother. I'll just end up rejecting anyways.*
    * How to get EFFECTIVE help: The Hitchhiker's Guide to Getting Help at VBF - Removing eels from your hovercraft *
    * How to Use Parameters * Create Disconnected ADO Recordset Clones * Set your VB6 ActiveX Compatibility * Get rid of those pesky VB Line Numbers * I swear I saved my data, where'd it run off to??? *

  17. #17
    Karen Payne MVP kareninstructor's Avatar
    Join Date
    Jun 2008
    Location
    Oregon
    Posts
    6,684

    Re: Why people prefer VB.NET or C# instead of Delphi?

    I coded in Delphi versions 3 to 5 and loved it but in todays world of programming Visual Studio is the best choice between the two (heck I don't event know if Delphi is still being sold, is it?)

  18. #18
    Junior Member
    Join Date
    May 2013
    Posts
    16

    Re: Why people prefer VB.NET or C# instead of Delphi?

    tg, there is only one kind of DLL. COM and .net Assemblies are DLL's. The windows OS only deals with Executables and DLL's, period. It knows nothing of .Net or even COM, it simply runs executables and provides a mechanism to load DLL's. .Net assemblies are implemented as DLL's and so is COM. .Net has isolated you from the OS.

    If an application, like a web server, maybe photoshop plugins, or the OS itself requires a DLL (not COM or assembly) - it cannot be provided by .net.

    The truth is, .Net cannot make native windows apps. Your .net application is not a windows application, rather there is a .net host application that runs your application.

  19. #19
    Junior Member
    Join Date
    May 2013
    Posts
    16

    Re: Why people prefer VB.NET or C# instead of Delphi?

    Quote Originally Posted by kevininstructor View Post
    I coded in Delphi versions 3 to 5 and loved it but in todays world of programming Visual Studio is the best choice between the two (heck I don't event know if Delphi is still being sold, is it?)
    First, here is the link to Delphi (http://www.embarcadero.com/products/delphi)
    Next, did you know Skype is written in Delphi?
    Next, did you know the developer of C# was the creator of Delphi and that .Net inherited a lot from Delphi? In fact Visual Studio was transformed to be more like Delphi.

  20. #20
    Junior Member
    Join Date
    May 2013
    Posts
    16

    Re: Why people prefer VB.NET or C# instead of Delphi?

    Quote Originally Posted by Lauriux1 View Post
    I have read a lot and still can't understand why people prefer VB.NET or C# instead of Delphi? And why Delphi is losing popularity?
    I believe it is Ignorance. Its a sad thing and somewhat unbelievable.

  21. #21
    PowerPoster JuggaloBrotha's Avatar
    Join Date
    Sep 2005
    Location
    Lansing, MI; USA
    Posts
    4,286

    Re: Why people prefer VB.NET or C# instead of Delphi?

    Quote Originally Posted by billegge View Post
    tg, there is only one kind of DLL. COM and .net Assemblies are DLL's. The windows OS only deals with Executables and DLL's, period. It knows nothing of .Net or even COM, it simply runs executables and provides a mechanism to load DLL's. .Net assemblies are implemented as DLL's and so is COM. .Net has isolated you from the OS.

    If an application, like a web server, maybe photoshop plugins, or the OS itself requires a DLL (not COM or assembly) - it cannot be provided by .net.

    The truth is, .Net cannot make native windows apps. Your .net application is not a windows application, rather there is a .net host application that runs your application.
    That's one of the things I love about .Net, as long as I write an application that targets a version of the .Net Framework, I don't need to care about Windows patches (or newer versions of Windows) breaking my app because MS handles that by updating the .Net FW.
    If I were to write a native application, a Windows patch tomorrow could break it and I would have to go back and modify my app, to work both before and after the patch. That can get messy.

    This is also part of why Java became so popular (which is what .net is entirely based on) you, as the developer, don't have to keep up with all of the OS patches and whatever the next OS will have, a different company handles that for you, so you can focus on what you need to, which is your application(s).
    Currently using VS 2015 Enterprise on Win10 Enterprise x64.

    CodeBank: All Threads • Colors ComboBox • Fading & Gradient Form • MoveItemListBox/MoveItemListView • MultilineListBox • MenuButton • ToolStripCheckBox • Start with Windows

  22. #22
    Junior Member
    Join Date
    May 2013
    Posts
    16

    Re: Why people prefer VB.NET or C# instead of Delphi?

    Quote Originally Posted by JuggaloBrotha View Post
    I don't need to care about Windows patches (or newer versions of Windows) breaking my app because MS handles that by updating the .Net FW.
    I have applications that were developed 10 years ago that still work on current windows. So I don't agree with you there. Its more, .net versions have a lifetime and will stop being supported. Basically your application is split in 2, the part you made and the runtime environment which you don't control. MSoft is more flippant about supporting .net than they are about supporting the OS. A native app has more assurance that it will run in a windows environment than a .net app.

    From experience, I have had 2 server applications on the same box go down because of a .net framework issue that could not be resolved and we had to get a new box and rebuild. The applications that did not go down were the native ones I made in Delphi.

    Native apps simply have less to go wrong and there is also a much simpler and anxiety free deployment.

  23. #23
    PowerPoster
    Join Date
    Feb 2006
    Posts
    24,482

    Re: Why people prefer VB.NET or C# instead of Delphi?

    Plus even those of us who don't want it get to pay the monthly Windows ".Net tax" as 20 to 200 MB of patches are pushed out to fix the security holes in the multiplying-like-rats Frameworks.

  24. #24
    PowerPoster
    Join Date
    Feb 2006
    Posts
    24,482

    Re: Why people prefer VB.NET or C# instead of Delphi?

    Delphi came out because AH got upset when VB and Windows became so popular that his creaky old DOS TurboPascal fell into disuse. As we know from history it was touted as an upcoming "VB Killer" though it never reached anything but marginal acceptance.

    When that fell flat he went to Microsoft and helped create the MSJVM and VJ++ that got Microsoft sued, and still causes us pain ever since.

    He went back with the chip still on his shoulder and recreated this as .Net with an army of lawyers to keep him out of trouble. VB people were not allowed at the .Net party, though VFP people who also had it in for VB were welcomed openly.

    The resulting travesty was VB.Net, a kind of hick country cousin of C#.

    .Net is not "based on Java" at all, though it stole many of the concepts.

  25. #25
    Super Moderator Shaggy Hiker's Avatar
    Join Date
    Aug 2002
    Location
    Idaho
    Posts
    38,989

    Re: Why people prefer VB.NET or C# instead of Delphi?

    What is up with this thread? The thing started well over a year ago, was dormant for most of its life, then some bomb thrower shows up and gets it going again, but there's no substance.

    If you don't like .NET then don't use it.

    @dilettante: You're pretty much wrong about who was and was not allowed at the .NET party when it comes to VB. I got to hear about it from the guy that called the meeting, who isn't a fan of .NET, either, but he was a whole lot more practical about it all. There wasn't any apparent animosity, it was just a business decision based on the typical business reasons: An estimate of the situation based on what information was at hand and guesses about the future direction.
    My usual boring signature: Nothing

  26. #26
    King of sapila
    Join Date
    Oct 2006
    Location
    Greece
    Posts
    6,597

    Re: Why people prefer VB.NET or C# instead of Delphi?

    Quote Originally Posted by dilettante View Post
    The resulting travesty was VB.Net, a kind of hick country cousin of C#.
    Don't agree, C# went through a degree of frameworks in order to incorporate all the vb.net functionality. IF there is travesty then it's the entire .net framework (that i hate but am bound to use).
    Look i hate windows and Micro$oft as the next guy but if i were to use Delphi i should just stick with good ol' C++ .
    I hate them(windows) but i am bound of using them because of the job opportunities and because my hatred ratio for Apple solutions goes over the limit of hatred (aka megahate).
    Anyhow i would love to participate on an anti microsoft thread but unfortunately we got these forum rules that won't let me cheer up on how i hate microsoft.
    Note, I should also make a request to be allowed to create an anti windows8 thread. The most idiotic thing ever created, after windows ME. Haha i just recalled our admin installing the new windows 2012 server with a smile on his face...The smile went away as he mistakenly decided a command prompt installation and later on, trying to find the start button. Lolololol!
    So ok i've changed my mind, i will go for Delphi on this one. Go Delphi!!
    ἄνδρα μοι ἔννεπε, μοῦσα, πολύτροπον, ὃς μάλα πολλὰ
    πλάγχθη, ἐπεὶ Τροίης ἱερὸν πτολίεθρον ἔπερσεν·

  27. #27
    Angel of Code Niya's Avatar
    Join Date
    Nov 2011
    Posts
    8,598

    Re: Why people prefer VB.NET or C# instead of Delphi?

    Quote Originally Posted by billegge View Post
    What is also strange is that they seem not to care what Delphi is.
    Should we ?
    Treeview with NodeAdded/NodesRemoved events | BlinkLabel control | Calculate Permutations | Object Enums | ComboBox with centered items | .Net Internals article(not mine) | Wizard Control | Understanding Multi-Threading | Simple file compression | Demon Arena

    Copy/move files using Windows Shell | I'm not wanted

    C++ programmers will dismiss you as a cretinous simpleton for your inability to keep track of pointers chained 6 levels deep and Java programmers will pillory you for buying into the evils of Microsoft. Meanwhile C# programmers will get paid just a little bit more than you for writing exactly the same code and VB6 programmers will continue to whitter on about "footprints". - FunkyDexter

    There's just no reason to use garbage like InputBox. - jmcilhinney

    The threads I start are Niya and Olaf free zones. No arguing about the benefits of VB6 over .NET here please. Happiness must reign. - yereverluvinuncleber

  28. #28
    Junior Member
    Join Date
    May 2013
    Posts
    16

    Re: Why people prefer VB.NET or C# instead of Delphi?

    Quote Originally Posted by Niya View Post
    Should we ?
    Should you?

  29. #29
    Super Moderator FunkyDexter's Avatar
    Join Date
    Apr 2005
    Location
    An obscure body in the SK system. The inhabitants call it Earth
    Posts
    7,900

    Re: Why people prefer VB.NET or C# instead of Delphi?

    Should you?
    Lets be honest... not really.

    As Shaggy averred to, I program to make money. There's no (or not much) money in Delphi while there's plenty in .Net and C#.
    The best argument against democracy is a five minute conversation with the average voter - Winston Churchill

    Hadoop actually sounds more like the way they greet each other in Yorkshire - Inferrd

  30. #30
    Junior Member
    Join Date
    May 2013
    Posts
    16

    Re: Why people prefer VB.NET or C# instead of Delphi?

    Quote Originally Posted by FunkyDexter View Post
    I program to make money.
    I program to make programs.

  31. #31
    Angel of Code Niya's Avatar
    Join Date
    Nov 2011
    Posts
    8,598

    Re: Why people prefer VB.NET or C# instead of Delphi?

    Quote Originally Posted by billegge View Post
    I program to make programs.
    VB.Net can make programs just fine so why should I care about Delphi ?
    Treeview with NodeAdded/NodesRemoved events | BlinkLabel control | Calculate Permutations | Object Enums | ComboBox with centered items | .Net Internals article(not mine) | Wizard Control | Understanding Multi-Threading | Simple file compression | Demon Arena

    Copy/move files using Windows Shell | I'm not wanted

    C++ programmers will dismiss you as a cretinous simpleton for your inability to keep track of pointers chained 6 levels deep and Java programmers will pillory you for buying into the evils of Microsoft. Meanwhile C# programmers will get paid just a little bit more than you for writing exactly the same code and VB6 programmers will continue to whitter on about "footprints". - FunkyDexter

    There's just no reason to use garbage like InputBox. - jmcilhinney

    The threads I start are Niya and Olaf free zones. No arguing about the benefits of VB6 over .NET here please. Happiness must reign. - yereverluvinuncleber

  32. #32
    Junior Member
    Join Date
    May 2013
    Posts
    16

    Re: Why people prefer VB.NET or C# instead of Delphi?

    Quote Originally Posted by Niya View Post
    VB.Net can make programs just fine so why should I care about Delphi ?
    Maybe the confusion is in the standard we base our choice of tool on. Mine is that I want to use the best tool and that has many sub factors (deployment, speed, reliability in production(dependencies for example), language features, ...), some others decide based on employment - meaning the boss chooses. When one person argues about technology the other could care less. So, if someone uses VB I would predict that they don't use it for technological reasons and that whatever reason I say why you should use Delphi would be irrelevant to you.

  33. #33
    Angel of Code Niya's Avatar
    Join Date
    Nov 2011
    Posts
    8,598

    Re: Why people prefer VB.NET or C# instead of Delphi?

    Quote Originally Posted by billegge View Post
    So, if someone uses VB I would predict that they don't use it for technological reasons and that whatever reason I say why you should use Delphi would be irrelevant to you.
    "technological reasons"

    What does that mean ?
    Treeview with NodeAdded/NodesRemoved events | BlinkLabel control | Calculate Permutations | Object Enums | ComboBox with centered items | .Net Internals article(not mine) | Wizard Control | Understanding Multi-Threading | Simple file compression | Demon Arena

    Copy/move files using Windows Shell | I'm not wanted

    C++ programmers will dismiss you as a cretinous simpleton for your inability to keep track of pointers chained 6 levels deep and Java programmers will pillory you for buying into the evils of Microsoft. Meanwhile C# programmers will get paid just a little bit more than you for writing exactly the same code and VB6 programmers will continue to whitter on about "footprints". - FunkyDexter

    There's just no reason to use garbage like InputBox. - jmcilhinney

    The threads I start are Niya and Olaf free zones. No arguing about the benefits of VB6 over .NET here please. Happiness must reign. - yereverluvinuncleber

  34. #34
    Super Moderator Shaggy Hiker's Avatar
    Join Date
    Aug 2002
    Location
    Idaho
    Posts
    38,989

    Re: Why people prefer VB.NET or C# instead of Delphi?

    Quote Originally Posted by billegge View Post
    Maybe the confusion is in the standard we base our choice of tool on. Mine is that I want to use the best tool and that has many sub factors (deployment, speed, reliability in production(dependencies for example), language features, ...), some others decide based on employment - meaning the boss chooses. When one person argues about technology the other could care less. So, if someone uses VB I would predict that they don't use it for technological reasons and that whatever reason I say why you should use Delphi would be irrelevant to you.
    That's a pretty good post. Frankly, there are plenty of examples where the innovative lost out to something less impressive for the simple reason that everybody embraced the less impressive for one reason or another. Still, the situation that I dread is getting back to the situation in the late 80s-early 90's where there was no most popular platform and everybody had to write for multiple platforms using multiple tools. Many developers couldn't afford to do that, or didn't want to, so they targeted one platform or another. For the consumer, if there was something you really wanted to use, but it wasn't written for your hardware...sucks to be you.

    Perhaps the world should come together around something open like Linux, but I don't see that happening. For whatever reason, the world has currently come together around Windows, with a few percentage off on other platforms. That makes it easy to choose the platform to target. It looks like mobile is going to coalesce around Android, though that could still change. Still, if it happens, there isn't a clear winner when it comes to tools for writing for Android. As far as writing for Windows, there are a few clear winners for different scenarios, and Delphi isn't one of them. Perhaps the technology is superior, perhaps the IDE is stellar, but it is still a marginal language and experience should show that once marginal, languages tend to stay right there.

    I program to make programs, too. It only became my employment years later. .NET has all the features, and I've had no issues, so I see no particular reason to change. The fact that I now work in a .NET shop means that changing isn't even an option, though.
    My usual boring signature: Nothing

  35. #35
    Super Moderator FunkyDexter's Avatar
    Join Date
    Apr 2005
    Location
    An obscure body in the SK system. The inhabitants call it Earth
    Posts
    7,900

    Re: Why people prefer VB.NET or C# instead of Delphi?

    I program to make programs
    Really? I don't. I program to add value. I add value to the business I work in and, in return, they give me some of that value back in the form of a salary. If I cease to add value then I cease to be employed. Even my home spun projects are only as useful as the benefit they offer.

    My previous answer was deliberately flippant because the post of yours I was responding to was flippant but if you want an argument with a little more substance: I've been in the position of deciding which technology to take forward several times. Every single time I've made the choice of a main player because the cost to a business of choosing a niche player is too great.

    Is Delphi faster than .Net? Dont know, don't care. Is it easier to program in? Don't know, don't care. Is it easier to deploy delphi apps to some linux based desktops which the business doesn't currently use but theoretically may do at some undisclosed point in the future? Don't know, don't care.

    But is it easier for me to hire a talented .Net programmer? Yes, definitely. Do I have more confidence that .Net will continue to be supported in the future? Yes, definitely. Assuming .Net does become obsolete am I confident that a company on the scale of Microsoft will offer some alternative with a reasonably painless transition path for programmers to follow and am I confident that the vast bulk of .Net programmers will follow that path thus continuing to provide me with a substantial recruitment and expertise pool? Yes, definitely.

    I make the decisions I do not on the basis that it's the right choice for me as an individual but rather because it's the right choice for the business I represent.

    If you bought a betamax video in the 80s you were buying the best technology available. But you'd still have been buying a technologically inferior VHS in the 90s if you wanted to actually get any benefit from having a video player.
    The best argument against democracy is a five minute conversation with the average voter - Winston Churchill

    Hadoop actually sounds more like the way they greet each other in Yorkshire - Inferrd

  36. #36
    Junior Member
    Join Date
    May 2013
    Posts
    16

    Re: Why people prefer VB.NET or C# instead of Delphi?

    Quote Originally Posted by Niya View Post
    "technological reasons"

    What does that mean ?

    I noticed that when there is a question or argument about Delphi that there seem to be 2 sides, one side says Delphi is good and lists technical reasons like the person who started this thread then the other side are those talking about availability of jobs. Rarely you will see a technical comparison between Delphi and .Net, you just see 2 sides fighting over 2 different things.

  37. #37
    Junior Member
    Join Date
    May 2013
    Posts
    16

    Re: Why people prefer VB.NET or C# instead of Delphi?

    Quote Originally Posted by FunkyDexter View Post
    Really? I don't. I program to add value. I add value to the business I work in and, in return, they give me some of that value back in the form of a salary. If I cease to add value then I cease to be employed. Even my home spun projects are only as useful as the benefit they offer.
    I am ending the quote there, I could quote the whole thing but I just want to quote enough to know what my post is replying to.

    Your position is based on anxiety and fear. Fear of not finding a programmer, fear of losing support. You even pointed out you did not care if Delphi was faster than .Net or easier to program in.

    I see a lot of this attitude and I wonder what is going on in the world, where fear dominates.

    Its an individual problem but I have a conspiracy theory that MSoft is taking advantage of it. See MSoft is seen as something sure, they know they have that edge and they can play that edge. All they have to do is make a competitor look unstable in order to win, and thats what they did to Borland. MSoft is a cannibal, they live off the achievements of other companies then put those companies out of business then MSoft itself stagnates till they find another business to eat.

  38. #38
    Super Moderator Shaggy Hiker's Avatar
    Join Date
    Aug 2002
    Location
    Idaho
    Posts
    38,989

    Re: Why people prefer VB.NET or C# instead of Delphi?

    Quote Originally Posted by billegge View Post
    I noticed that when there is a question or argument about Delphi that there seem to be 2 sides, one side says Delphi is good and lists technical reasons like the person who started this thread then the other side are those talking about availability of jobs. Rarely you will see a technical comparison between Delphi and .Net, you just see 2 sides fighting over 2 different things.
    What is the size of the pool of people who are thoroughly fluent in both .NET and Delphi, and are objective enough to be able to do a real comparison between the two? I know of nobody who could reasonably claim to be in that set. The Delphi supporters I know seem to have moved to Delphi specifically because they have a grudge against MS, often stemming from the fact that MS switched from classic VB to .NET. That makes their point of view highly suspect.

    As far as I can tell, there are two groups of people: Those who went to Delphi out of bitterness with MS, and therefore have a reason to tout Delphi as being better, but who also don't have sufficient experience in .NET to be able to compare the two well, and those who are in .NET and have never used Delphi and therefore lack sufficient experience in Delphi to compare the two well.

    This thread started with a post based on a fermented mix of partisanship and ignorance. It has continued along those lines as all holy wars do. Find some people who have equally strong experience with both languages, and who are not biased against MS or Delphi, and their information would be interesting. Aside from that, this whole thread is about Delphi partisans trying to prove that people should switch away from something they are happy with to something different. That's an absurd argument, as people only move from their current course if they have some reason to do so. The whole thread can be summed up in this way:

    Person 1: I think Delphi is better than .NET.
    Person 2: Then use it.
    My usual boring signature: Nothing

  39. #39
    Junior Member
    Join Date
    May 2013
    Posts
    16

    Re: Why people prefer VB.NET or C# instead of Delphi?

    Quote Originally Posted by Shaggy Hiker View Post
    but who also don't have sufficient experience in .NET to be able to compare the two well
    Thanks Shaggy for your post. I am a strong Delphi supporter but I am not biased. I gave .Net a chance from a technical perspective and it only strengthened my support of Delphi. I don't need to be elaborately experienced in .Net to make a correct choice, there are just some key points to consider and not the whole mammoth of .Net. There was one point about .Net that I saw better than Delphi and that it has the ability to compile for the specific CPU it is running on, Delphi has to make a general compile and this can make .Net faster. In fact I would consider .Net for computationally intensive tasks, I don't have a bias towards Delphi that would cause me to evade .nets strengths. My arguments for Delphi are strictly technical, thats how I compare them and I do so without prejudice.

  40. #40
    Angel of Code Niya's Avatar
    Join Date
    Nov 2011
    Posts
    8,598

    Re: Why people prefer VB.NET or C# instead of Delphi?

    Quote Originally Posted by billegge View Post
    I noticed that when there is a question or argument about Delphi that there seem to be 2 sides, one side says Delphi is good and lists technical reasons like the person who started this thread then the other side are those talking about availability of jobs. Rarely you will see a technical comparison between Delphi and .Net, you just see 2 sides fighting over 2 different things.
    Well I can't speak to that since I've never used Delphi so I'd leave that to those who have experience with it.

    Quote Originally Posted by billegge View Post
    Its an individual problem but I have a conspiracy theory that MSoft is taking advantage of it. See MSoft is seen as something sure, they know they have that edge and they can play that edge. All they have to do is make a competitor look unstable in order to win, and thats what they did to Borland. MSoft is a cannibal, they live off the achievements of other companies then put those companies out of business then MSoft itself stagnates till they find another business to eat.
    Just wow....This is really getting old. "MS the big evil corporation"...You seemed like a reasonable individual until now. Do you and the other countless people spouting this have any clue how this comes across ? Think guys in tin-foil hats. MS is successful because they did more things right than they did wrong. .Net is one of those things they did right. If you ever used .Net you'd see why it is such a big deal. The .Net Framework itself is extremely powerful and their flagship IDE for development of .Net programs leaves little in wanting.
    Treeview with NodeAdded/NodesRemoved events | BlinkLabel control | Calculate Permutations | Object Enums | ComboBox with centered items | .Net Internals article(not mine) | Wizard Control | Understanding Multi-Threading | Simple file compression | Demon Arena

    Copy/move files using Windows Shell | I'm not wanted

    C++ programmers will dismiss you as a cretinous simpleton for your inability to keep track of pointers chained 6 levels deep and Java programmers will pillory you for buying into the evils of Microsoft. Meanwhile C# programmers will get paid just a little bit more than you for writing exactly the same code and VB6 programmers will continue to whitter on about "footprints". - FunkyDexter

    There's just no reason to use garbage like InputBox. - jmcilhinney

    The threads I start are Niya and Olaf free zones. No arguing about the benefits of VB6 over .NET here please. Happiness must reign. - yereverluvinuncleber

Page 1 of 3 123 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width