Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. .NET (Core and Framework)
  4. [Message Deleted]

[Message Deleted]

Scheduled Pinned Locked Moved .NET (Core and Framework)
23 Posts 11 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • R Robin_Roy

    I found your post very surprising, how could you know C# well without understanding the .Net Framework.

    C Offline
    C Offline
    CoderForEver
    wrote on last edited by
    #11

    Hey budy ................ i learned C++ and with out knowing what it is in our lab .............. i started working C# forms(very easy one) ................ coz most of the time I learned by my slef .............. after a while I downloaded some c# codes and see what i can get .......... so how could you expect me to know it without any clue about it .......................... I just post this question to get some idea from u guys ................. but every body whistles ............................ any ways if you are ok with that I wish you could helped me. Thank you

    1 Reply Last reply
    0
    • C CoderForEver

      Hey budy .............. i learned C++ and with out knowing what it is in our lab .............. i started working C# forms(very easy one) ................ coz most of the time I learned by my slef .............. after a while I downloaded some c# codes and see what i can get .......... so how could you expect me to know it without any clue about it ............................ I just post this question to get some idea from u guys ................. but every body whistles ............................ any ways if you are ok with that I wish you could helped me. Thank you

      L Offline
      L Offline
      Luc Pattyn
      wrote on last edited by
      #12

      Now read this[^]. :~

      Luc Pattyn [Forum Guidelines] [My Articles]


      The quality and detail of your question reflects on the effectiveness of the help you are likely to get. Show formatted code inside PRE tags, and give clear symptoms when describing a problem.


      C 1 Reply Last reply
      0
      • C CoderForEver

        Hey budy .............. i learned C++ and with out knowing what it is in our lab .............. i started working C# forms(very easy one) ................ coz most of the time I learned by my slef .............. after a while I downloaded some c# codes and see what i can get .......... so how could you expect me to know it without any clue about it .......................... I just post this question to get some idea from u guys ................. but every body whistles ............................ any ways if you are ok with that I wish you could helped me. Thank you

        H Offline
        H Offline
        Henry Minute
        wrote on last edited by
        #13

        matiIsGreat wrote:

        i learned C++ and with out knowing what it is in our lab

        And did you use MFC or ATL in any of this C++ that you wrote? Do you understand what they are?

        Henry Minute Do not read medical books! You could die of a misprint. - Mark Twain Girl: (staring) "Why do you need an icy cucumber?" “I want to report a fraud. The government is lying to us all.”

        C 1 Reply Last reply
        0
        • C CoderForEver

          [Message Deleted]

          0 Offline
          0 Offline
          0x3c0
          wrote on last edited by
          #14

          matiIsGreat wrote:

          Hey guys I am working on c# appllication ......... i know it well ..... but I cant understand the aim of the .Net Framework ................ what is its apllication??? i am confused

          The .Net framework is just a collection of classes and services. The classes serve to simplify development by providing common tasks, and allowing you to interop using PInvoke. The services clean up after you, making sure that the stuff you create using new is released at the end of its scope. It's language agnostic - the only difference between C#, VB.Net, C++ (CLI) and a few others is a bit of syntax. You can use the same .Net framework in most MS languages. Originally it just ran on Windows 98+, but recently it's been ported to Linux as Mono. You can also run a subset of the framework on Pocket PCs. The .Net framework can run either online or offline applications. By online applications I mean Silverlight applications. By offline applications I mean the usual WPF/Windows Forms applications, like the one you've been writing. Each release of the .Net framework is a superset of the previous. Version 2.0 builds on top of version 1.1, and so on. So you could theoretically build a program which is usable by any version of the framework - it's just not commonly done. Windows Vista and Windows Seven have got versions of the .Net framework installed by default, so you can deploy your applications to there without too much hassle. The .Net framework also does deployment applications, like installers. You might want to research ClickOnce as an example of this.

          Between the idea And the reality Between the motion And the act Falls the Shadow

          C 1 Reply Last reply
          0
          • C CoderForEver

            Hey budy .............. i learned C++ and with out knowing what it is in our lab .............. i started working C# forms(very easy one) ................ coz most of the time I learned by my slef ................ after a while I downloaded some c# codes and see what i can get .......... so how could you expect me to know it without any clue about it .......................... I just post this question to get some idea from u guys ................. but every body whistles ............................ any ways if you are ok with that I wish you could helped me. Thank you

            N Offline
            N Offline
            Not Active
            wrote on last edited by
            #15

            Read this [^]


            only two letters away from being an asset

            1 Reply Last reply
            0
            • C CoderForEver

              [Message Deleted]

              B Offline
              B Offline
              Blikkies
              wrote on last edited by
              #16

              Go to this link: This will explane beter than me

              1 Reply Last reply
              0
              • C CoderForEver

                [Message Deleted]

                L Offline
                L Offline
                leckey 0
                wrote on last edited by
                #17

                I voted a "1" before looking at his copy/paste responses and can no longer report the message.

                Back in the blog beatch! http://CraptasticNation.blogspot.com/[^]

                1 Reply Last reply
                0
                • 0 0x3c0

                  matiIsGreat wrote:

                  Hey guys I am working on c# appllication ......... i know it well ..... but I cant understand the aim of the .Net Framework ................ what is its apllication??? i am confused

                  The .Net framework is just a collection of classes and services. The classes serve to simplify development by providing common tasks, and allowing you to interop using PInvoke. The services clean up after you, making sure that the stuff you create using new is released at the end of its scope. It's language agnostic - the only difference between C#, VB.Net, C++ (CLI) and a few others is a bit of syntax. You can use the same .Net framework in most MS languages. Originally it just ran on Windows 98+, but recently it's been ported to Linux as Mono. You can also run a subset of the framework on Pocket PCs. The .Net framework can run either online or offline applications. By online applications I mean Silverlight applications. By offline applications I mean the usual WPF/Windows Forms applications, like the one you've been writing. Each release of the .Net framework is a superset of the previous. Version 2.0 builds on top of version 1.1, and so on. So you could theoretically build a program which is usable by any version of the framework - it's just not commonly done. Windows Vista and Windows Seven have got versions of the .Net framework installed by default, so you can deploy your applications to there without too much hassle. The .Net framework also does deployment applications, like installers. You might want to research ClickOnce as an example of this.

                  Between the idea And the reality Between the motion And the act Falls the Shadow

                  C Offline
                  C Offline
                  CoderForEver
                  wrote on last edited by
                  #18

                  Hey dude .... thanks a lot..... you gave me a good start.... and I hope I can do much better if i know a little bit ..... you are better than the others ........ they thought i was kidding ..... every body replyed negative thoughts .... that is not expected from the so called "Programmers" ........ By the way I have 1 question for you.... from your answer

                  Computafreak wrote:

                  The classes serve to simplify development by providing common tasks, and allowing you to interop using PInvoke.

                  I didnt understand the word PInvoke Thanks a lot.

                  D 0 2 Replies Last reply
                  0
                  • H Henry Minute

                    matiIsGreat wrote:

                    i learned C++ and with out knowing what it is in our lab

                    And did you use MFC or ATL in any of this C++ that you wrote? Do you understand what they are?

                    Henry Minute Do not read medical books! You could die of a misprint. - Mark Twain Girl: (staring) "Why do you need an icy cucumber?" “I want to report a fraud. The government is lying to us all.”

                    C Offline
                    C Offline
                    CoderForEver
                    wrote on last edited by
                    #19

                    Hey budy I didnt learn that much .... I told you I dig my self ......... so I dont know what MFC or ATL are ............ can you tell me what they are?? By the way I got a nice answer from some one else on this thread ....... thanks

                    1 Reply Last reply
                    0
                    • L Luc Pattyn

                      Now read this[^]. :~

                      Luc Pattyn [Forum Guidelines] [My Articles]


                      The quality and detail of your question reflects on the effectiveness of the help you are likely to get. Show formatted code inside PRE tags, and give clear symptoms when describing a problem.


                      C Offline
                      C Offline
                      CoderForEver
                      wrote on last edited by
                      #20

                      good one Thank you.

                      1 Reply Last reply
                      0
                      • C CoderForEver

                        Hey dude .... thanks a lot..... you gave me a good start.... and I hope I can do much better if i know a little bit ..... you are better than the others ........ they thought i was kidding ..... every body replyed negative thoughts .... that is not expected from the so called "Programmers" ........ By the way I have 1 question for you.... from your answer

                        Computafreak wrote:

                        The classes serve to simplify development by providing common tasks, and allowing you to interop using PInvoke.

                        I didnt understand the word PInvoke Thanks a lot.

                        D Offline
                        D Offline
                        Dave Kreskowiak
                        wrote on last edited by
                        #21

                        You told everyone you know C# very well. The problem is you can't possibly know c# that well at all if you didn't know what the .NET Framework was and what the .NET CLR is. It seems from the two questions you asked in this thread that you don't know C# beyond the basic contructs of the language itself.

                        A guide to posting questions on CodeProject[^]
                        Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
                             2006, 2007, 2008
                        But no longer in 2009...

                        1 Reply Last reply
                        0
                        • C CoderForEver

                          Hey dude .... thanks a lot..... you gave me a good start.... and I hope I can do much better if i know a little bit ..... you are better than the others ........ they thought i was kidding ..... every body replyed negative thoughts .... that is not expected from the so called "Programmers" ........ By the way I have 1 question for you.... from your answer

                          Computafreak wrote:

                          The classes serve to simplify development by providing common tasks, and allowing you to interop using PInvoke.

                          I didnt understand the word PInvoke Thanks a lot.

                          0 Offline
                          0 Offline
                          0x3c0
                          wrote on last edited by
                          #22

                          PInvoke is short for platform invoke. It allows CIL, which is managed code which uses the .Net framework, to call native code, which is basically, C++, C or assembly code. It's commonly used to do pointer arithmetic (in VB.Net) or work directly with Windows. Most of the people who replied to you are usually helpful. It's just that most of the information I gave you, you could have found out by looking the .Net Framework up on Wikipedia. No offence :-D

                          Between the idea And the reality Between the motion And the act Falls the Shadow

                          1 Reply Last reply
                          0
                          • H Henry Minute

                            You can not be serious!

                            Henry Minute Do not read medical books! You could die of a misprint. - Mark Twain Girl: (staring) "Why do you need an icy cucumber?" “I want to report a fraud. The government is lying to us all.”

                            K Offline
                            K Offline
                            Kevin McFarlane
                            wrote on last edited by
                            #23

                            Have you ever seen this famous scene? 43s. You can not be serious![^]

                            Kevin

                            1 Reply Last reply
                            0
                            Reply
                            • Reply as topic
                            Log in to reply
                            • Oldest to Newest
                            • Newest to Oldest
                            • Most Votes


                            • Login

                            • Don't have an account? Register

                            • Login or register to search.
                            • First post
                              Last post
                            0
                            • Categories
                            • Recent
                            • Tags
                            • Popular
                            • World
                            • Users
                            • Groups