|
It seems like you could use a mashup of Relector and a Debugger to be able to debug any .NET app WITHOUT having the source code at all. Is this possible? Has anyone seen this before?
Started by skb on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
Even simple....
All without but somebody did use the reflector source to compile a debug version of the 1.1 framework the could step to be fixed manually).
Your app and have the full code, then modify it and distribute their own version of it.
|
|
Members at work have come across a C# project posted on Google code that provides a nice solution to a problem they have in a current project. What are the implications/restrictions on using those ideas (or in some cases code snippets) to use in their...
Started by Cragly on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Http://stackoverflow.com/questions/1190628/what-license-....
Ask the creator of the original work for permission to use it in the way you like.
If there are no license or terms you cannot use any code snippets from the original work.
|
|
Hi I have a page with a Textbox , a Button and a Label control. On Button_Click event , I store the value of Textbox in a variable called S using code behind.
I want to show the value of S in the Lable control using inline code but not using the code ...
Answer Snippets (Read the full thread at stackoverflow):
Script>
This is not the ASP.net approach, but you can add S as a member of the code-behind.
|
Ask your Facebook Friends
|
I'm working with a code base, which in places has code 10 years old. The code has undergone numerous additions, changes, editions, and refactorings without the removal of any code, or modules which are no longer required. As a result, the code base is...
Started by flungabunga on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
For Java code, Bill Pugh, the father of FindbugsHey there,
There are tools that help you identify dead code paths in your code and classes/methods design documentation, if you....
Coverage tool to use with the output of XDebug.
|
|
ISO 3166 has a list of 2 character country codes such as US , UK , FR .
A shopping cart I've used has both these codes and also the culture codes such as en-US or en-UK .
For a separate project I thought that the longer code is more useful because it ...
Started by Simon on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
List of Culture Codes main question, but the ISO 3166 country code for the United Kingdom is GB, not UK (which is “exceptionally reserved”, though....
To track cultural and regional settings, then I'd use the full culture code.
|
|
How do I call a .NET code from native C++ (unmanaged code)? I want to expose .NET code to my unmanaged (C++) application and then use them. More specifically, I want to call C# from native C++ :). I know there are many ways but can you tell me the pros...
Started by mnhab on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Analogous to how DllImportAttribute....
You can use Microsoft's C++/CLI to reference your C# code and export it as ordinary DLL Visual C++ code in Visual Studio.NET or in Visual Studio 2005
I've written about it just recently from C#.
Structures).
|
|
Quick question, If I want to document some code on a basic HTML and put that within a CODE tag, how can I quickly convert the code between those tags when the page renders to display properly? I know I can write a javascript find and replace and search...
Started by FluidFoundation on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Unless the code you are trying to display is HTML code itself, then I think....
That will preserve line breaks and spaces.
You might be looking for the <pre> tag (for pre formatted) .
Code> seems to just use a monospaced font.
|
|
We are going to interview some candidates over the phone and we need the candidate to write code (pseudo code). Obviously, asking the candidate to read the code out loud to us over the phone isn't ideal.
I wonder if there is any good platform to do this...
Started by rxin on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Candidates....
How about Email?
How about chat?
you could use Etherpad ( http://etherpad.com/ ) to see what exactly they are typing while they are typing it
Couldn't you use some IM client? Or are you really without seeing written code.
|
|
I recently found a cool little project that I would like to download the source code of. Using the web interface on Google Code, I can browse through all of the files in the source code of the project.
Google gives me this:
# Non-members may check out...
Started by James Brauman on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
So, the source-code is not password protected (obviously because google ....
If you use https, you're asked a copy of xnamugen using no username.
Client?
Make sure you're using http, not https for the Google code url.
|
|
I just saw a really cool WPF twitter client that I think is developed by the Herding Code podcast guys HerdingCode called Witty . (or at least, I see a lot of those guys using this client). This project is currently posted up on Google Code.
Many of the...
Started by emcpadden on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Choose SVN to the place where you want to download... .
The manual explains how to checkout code:
http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-dug-checkout.html
Create a folder where you want to keep the code, and right click on it.
|