C++ / c#? menu

User Tag List

Thread: C++ / c#?

Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 36
  1. #16
    chaddiablo's Avatar Member
    Reputation
    6
    Join Date
    May 2009
    Posts
    117
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Oh you...
    and who are you?


    ---------- Post added at 01:55 AM ---------- Previous post was at 01:53 AM ----------

    Originally Posted by Apoc View Post
    Seriously, read through the thread, and see what he replied to.

    You may not ask for his opinion, but him pointing out the fact that you haven't used the language, yet are putting in your own opinion, is completely valid.
    Hes stating a fact from his opinion.
    Saying that I don't know the language cause of a code months back.

    C++ / c#?
  2. #17
    Apoc's Avatar Angry Penguin
    Reputation
    1388
    Join Date
    Jan 2008
    Posts
    2,750
    Thanks G/R
    0/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by chaddiablo View Post
    Oh you...
    and who are you?


    ---------- Post added at 01:55 AM ---------- Previous post was at 01:53 AM ----------



    Hes stating a fact from his opinion.
    Saying that I don't know the language cause of a code months back.
    I'm inclined to believe he's correct. You're still using C++/CLI, which is most definitely NOT C++. Some aspects are shared, sure. But they are vastly different.

  3. #18
    chaddiablo's Avatar Member
    Reputation
    6
    Join Date
    May 2009
    Posts
    117
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Apoc View Post


    I'm inclined to believe he's correct. You're still using C++/CLI, which is most definitely NOT C++. Some aspects are shared, sure. But they are vastly different.
    Yes they are different in ways.
    But Im trying to state that the fact that I used c++/cli back then doesnt mean I still use it still.

  4. #19
    Apoc's Avatar Angry Penguin
    Reputation
    1388
    Join Date
    Jan 2008
    Posts
    2,750
    Thanks G/R
    0/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by chaddiablo View Post


    Yes they are different in ways.
    But Im trying to state that the fact that I used c++/cli back then doesnt mean I still use it still.
    Then prove us wrong?

    What language do you currently work in?

  5. #20
    chaddiablo's Avatar Member
    Reputation
    6
    Join Date
    May 2009
    Posts
    117
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Apoc View Post


    Then prove us wrong?

    What language do you currently work in?
    C++, vb.net

    I make bots for monetizing money.

  6. #21
    XTZGZoReX's Avatar Active Member
    Reputation
    32
    Join Date
    Apr 2008
    Posts
    173
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    C++/CLI actually compiles into regular CIL (unless you make any calls to libc/libstdc++, in which case, those calls become P/Invokes), so the language syntax is the *only* thing that can be compared; the underlying runtime doesn't even remotely resemble that of C++.

    Either way, that's not to say C++/CLI sucks - it gives you raw pointer manipulation just like C++, as well as manual memory management, which is VERY beneficial in some cases (it effectively makes the .NET platform great for game programming, for instance, because you have such low-level control, and can completely avoid using the GC at all). C++/CLI is even fully Mono-compatible if you avoid any calls into libc/libstdc++ (been there, done that; works like a charm, though you have to patch a few things so the linker shuts up (e.g. provide malloc, free, so on, so forth)).

    </offtopic>

  7. #22
    Apoc's Avatar Angry Penguin
    Reputation
    1388
    Join Date
    Jan 2008
    Posts
    2,750
    Thanks G/R
    0/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by chaddiablo View Post


    C++, vb.net

    I make bots for monetizing money.
    So uh... how did you manage to fall into VB.NET from *any* C based language?

    I'm sorry, but you give me no reason to believe you at all.

  8. #23
    Apoc's Avatar Angry Penguin
    Reputation
    1388
    Join Date
    Jan 2008
    Posts
    2,750
    Thanks G/R
    0/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by XTZGZoReX View Post
    C++/CLI actually compiles into regular CIL (unless you make any calls to libc/libstdc++, in which case, those calls become P/Invokes), so the language syntax is the *only* thing that can be compared; the underlying runtime doesn't even remotely resemble that of C++.

    Either way, that's not to say C++/CLI sucks - it gives you raw pointer manipulation just like C++, as well as manual memory management, which is VERY beneficial in some cases (it effectively makes the .NET platform great for game programming, for instance, because you have such low-level control, and can completely avoid using the GC at all). C++/CLI is even fully Mono-compatible if you avoid any calls into libc/libstdc++ (been there, done that; works like a charm, though you have to patch a few things so the linker shuts up (e.g. provide malloc, free, so on, so forth)).

    </offtopic>
    Hush you. Nobody invited you to the party!

  9. #24
    chaddiablo's Avatar Member
    Reputation
    6
    Join Date
    May 2009
    Posts
    117
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Apoc View Post


    So uh... how did you manage to fall into VB.NET from *any* C based language?

    I'm sorry, but you give me no reason to believe you at all.
    vb.net was my first language I started in.
    And once I got the hang of that. I went and started learning c++


    ---------- Post added at 02:08 AM ---------- Previous post was at 02:07 AM ----------

    I'm not asking you to believe me I'm just stating a fact.

  10. #25
    XTZGZoReX's Avatar Active Member
    Reputation
    32
    Join Date
    Apr 2008
    Posts
    173
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hush you. Nobody invited you to the party!
    It's not like this party is very interesting anyway.

  11. #26
    chaddiablo's Avatar Member
    Reputation
    6
    Join Date
    May 2009
    Posts
    117
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by XTZGZoReX View Post
    It's not like the party is very interesting anyway.
    This is the most interesting thread I had all day okay!

  12. #27
    suicidity's Avatar Contributor
    Reputation
    207
    Join Date
    Oct 2006
    Posts
    1,439
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by chaddiablo View Post
    Heh well. That post was back then.
    And I have already made a few bots from that code.

    Since I learned c++ first. And haven't touched c# yet.
    Originally Posted by chaddiablo View Post
    vb.net was my first language I started in.
    And once I got the hang of that. I went and started learning c++

    ---------- Post added at 02:08 AM ---------- Previous post was at 02:07 AM ----------

    I'm not asking you to believe me I'm just stating a fact.
    Wait.. what? Which came first.. the C++ or the VB?


  13. #28
    Robske's Avatar Contributor
    Reputation
    305
    Join Date
    May 2007
    Posts
    1,062
    Thanks G/R
    3/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by chaddiablo View Post


    This is the most interesting thread I had all day okay!
    You must live a very exciting life.

    Also, your font colour sucks.
    "Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live." - Martin Golding
    "I cried a little earlier when I had to poop" - Sku

  14. #29
    XTZGZoReX's Avatar Active Member
    Reputation
    32
    Join Date
    Apr 2008
    Posts
    173
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Also, your font colour sucks.
    I second that.

  15. #30
    Jadd's Avatar 🐸 Premium Seller
    Reputation
    1515
    Join Date
    May 2008
    Posts
    2,433
    Thanks G/R
    81/336
    Trade Feedback
    1 (100%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by suicidity View Post
    Wait.. what? Which came first.. the C++ or the VB?
    The AutoIt

Page 2 of 3 FirstFirst 123 LastLast
All times are GMT -5. The time now is 11:57 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search