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. The Lounge
  3. .NET framework lib source code available

.NET framework lib source code available

Scheduled Pinned Locked Moved The Lounge
csharpasp-netdotnetcomtools
10 Posts 6 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 Offline
    R Offline
    Ravi Bhavnani
    wrote on last edited by
    #1

    Clickety[^] (Apologies if this is a repost) /ravi

    My new year resolution: 2048 x 1536 Home | Music | Articles | Freeware ravib(at)ravib(dot)com

    C S 2 Replies Last reply
    0
    • R Ravi Bhavnani

      Clickety[^] (Apologies if this is a repost) /ravi

      My new year resolution: 2048 x 1536 Home | Music | Articles | Freeware ravib(at)ravib(dot)com

      C Offline
      C Offline
      Chris Losinger
      wrote on last edited by
      #2

      hopefully it's easier to understand than the CRT or STL source !

      image processing toolkits | batch image processing

      R 1 Reply Last reply
      0
      • C Chris Losinger

        hopefully it's easier to understand than the CRT or STL source !

        image processing toolkits | batch image processing

        R Offline
        R Offline
        Ravi Bhavnani
        wrote on last edited by
        #3

        Chris Losinger wrote:

        hopefully it's easier to understand

        I think the nature of C# will enforce that in some part. Of course, one can still write poorly designed code that's hard to decipher in any language. :) /ravi

        My new year resolution: 2048 x 1536 Home | Music | Articles | Freeware ravib(at)ravib(dot)com

        C 1 Reply Last reply
        0
        • R Ravi Bhavnani

          Chris Losinger wrote:

          hopefully it's easier to understand

          I think the nature of C# will enforce that in some part. Of course, one can still write poorly designed code that's hard to decipher in any language. :) /ravi

          My new year resolution: 2048 x 1536 Home | Music | Articles | Freeware ravib(at)ravib(dot)com

          C Offline
          C Offline
          Chris Losinger
          wrote on last edited by
          #4

          i've seen plenty of hard-to-understand C#: just overdoing the OO and getting all happy with the interfaces is enough. in my opinion, if it takes more than 5 function calls to get to the first code that does anything, it's hard to understand.

          image processing toolkits | batch image processing

          1 Reply Last reply
          0
          • R Ravi Bhavnani

            Clickety[^] (Apologies if this is a repost) /ravi

            My new year resolution: 2048 x 1536 Home | Music | Articles | Freeware ravib(at)ravib(dot)com

            S Offline
            S Offline
            Shog9 0
            wrote on last edited by
            #5

            Anyone try it yet? I'm downloading the QFE now, but half-expect to see a "just kidding - coming soon for reals this time!!" when it loads... :rolleyes:

            R 1 Reply Last reply
            0
            • S Shog9 0

              Anyone try it yet? I'm downloading the QFE now, but half-expect to see a "just kidding - coming soon for reals this time!!" when it loads... :rolleyes:

              R Offline
              R Offline
              Rama Krishna Vavilala
              wrote on last edited by
              #6

              Yes! I tried that long time back. I had access to the source during the beta test period. However, it is not as helpful as I expected it to be. For one some of the libraries are missing (aka LINQ, System.Configuration). Also because the code is highly optimized it is almost impossible to make out the variable values. In short, it is not as good as I expected it to be.

              You have, what I would term, a very formal turn of phrase not seen in these isles since the old King passed from this world to the next. martin_hughes on VDK

              S 1 Reply Last reply
              0
              • R Rama Krishna Vavilala

                Yes! I tried that long time back. I had access to the source during the beta test period. However, it is not as helpful as I expected it to be. For one some of the libraries are missing (aka LINQ, System.Configuration). Also because the code is highly optimized it is almost impossible to make out the variable values. In short, it is not as good as I expected it to be.

                You have, what I would term, a very formal turn of phrase not seen in these isles since the old King passed from this world to the next. martin_hughes on VDK

                S Offline
                S Offline
                Shog9 0
                wrote on last edited by
                #7

                Rama Krishna Vavilala wrote:

                Also because the code is highly optimized it is almost impossible to make out the variable values.

                That's a real shame. :(

                V 1 Reply Last reply
                0
                • S Shog9 0

                  Rama Krishna Vavilala wrote:

                  Also because the code is highly optimized it is almost impossible to make out the variable values.

                  That's a real shame. :(

                  V Offline
                  V Offline
                  Vega02
                  wrote on last edited by
                  #8

                  1. Open a Visual Studio command prompt. 2. Type "set complus_zapdisable=1" to disable JIT optimization. 3. Type "devenv" to launch Visual Studio. 4. Open your solution. 5. Right-click on your project and hit Properties. 6. Navigate to the Debug tab. 7. Uncheck the "Enable the Visual Studio hosting process" checkbox. 8. JIT optimizations are now fully disabled when you go to debug. You can verify this by noting that in the Modules window, every entry in the Optimized column is No. Happy debugging! :)

                  S D 2 Replies Last reply
                  0
                  • V Vega02

                    1. Open a Visual Studio command prompt. 2. Type "set complus_zapdisable=1" to disable JIT optimization. 3. Type "devenv" to launch Visual Studio. 4. Open your solution. 5. Right-click on your project and hit Properties. 6. Navigate to the Debug tab. 7. Uncheck the "Enable the Visual Studio hosting process" checkbox. 8. JIT optimizations are now fully disabled when you go to debug. You can verify this by noting that in the Modules window, every entry in the Optimized column is No. Happy debugging! :)

                    S Offline
                    S Offline
                    Shog9 0
                    wrote on last edited by
                    #9

                    Brilliant - it works! :D Thanks!

                    1 Reply Last reply
                    0
                    • V Vega02

                      1. Open a Visual Studio command prompt. 2. Type "set complus_zapdisable=1" to disable JIT optimization. 3. Type "devenv" to launch Visual Studio. 4. Open your solution. 5. Right-click on your project and hit Properties. 6. Navigate to the Debug tab. 7. Uncheck the "Enable the Visual Studio hosting process" checkbox. 8. JIT optimizations are now fully disabled when you go to debug. You can verify this by noting that in the Modules window, every entry in the Optimized column is No. Happy debugging! :)

                      D Offline
                      D Offline
                      Douglas Troy
                      wrote on last edited by
                      #10

                      Vega02 - You should go post this to .NET Tip of the Day[^] Those are handy settings ... :) D.


                      :..::. Douglas H. Troy ::..
                      Bad Astronomy |VCF|wxWidgets|WTL

                      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