Click here to Skip to main content
15,895,256 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: crystalr reports Pin
gnadeem10-Dec-06 6:32
gnadeem10-Dec-06 6:32 
Questionfaulting module mscorwks.dll .Net Runtime 2.0 Error Reporting Pin
bigeyed5-Dec-06 17:47
bigeyed5-Dec-06 17:47 
AnswerRe: faulting module mscorwks.dll .Net Runtime 2.0 Error Reporting Pin
MatrixCoder5-Dec-06 18:01
MatrixCoder5-Dec-06 18:01 
Questionhow to execute ngen output .ni.exe file Pin
Andrew Shapira5-Dec-06 15:30
Andrew Shapira5-Dec-06 15:30 
AnswerRe: how to execute ngen output .ni.exe file Pin
Scott Dorman5-Dec-06 16:10
professionalScott Dorman5-Dec-06 16:10 
GeneralRe: how to execute ngen output .ni.exe file Pin
Andrew Shapira5-Dec-06 16:32
Andrew Shapira5-Dec-06 16:32 
QuestionNeed a way to map enum values to human friendly strings Pin
nicknotyet5-Dec-06 8:49
nicknotyet5-Dec-06 8:49 
AnswerRe: Need a way to map enum values to human friendly strings Pin
George L. Jackson5-Dec-06 10:39
George L. Jackson5-Dec-06 10:39 
The following will print "Blue" to the console:

namespace CSFoo
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine(ETest.Blue);
        }
    }
 
    enum ETest
    {
        Red,
        White,
        Blue
    }
}

GeneralRe: Need a way to map enum values to human friendly strings Pin
nicknotyet5-Dec-06 10:51
nicknotyet5-Dec-06 10:51 
GeneralRe: Need a way to map enum values to human friendly strings Pin
Dan Neely5-Dec-06 10:55
Dan Neely5-Dec-06 10:55 
GeneralRe: Need a way to map enum values to human friendly strings Pin
George L. Jackson5-Dec-06 10:56
George L. Jackson5-Dec-06 10:56 
GeneralRe: Need a way to map enum values to human friendly strings Pin
nicknotyet5-Dec-06 11:16
nicknotyet5-Dec-06 11:16 
GeneralRe: Need a way to map enum values to human friendly strings Pin
Scott Dorman5-Dec-06 13:59
professionalScott Dorman5-Dec-06 13:59 
GeneralRe: Need a way to map enum values to human friendly strings Pin
nicknotyet6-Dec-06 5:18
nicknotyet6-Dec-06 5:18 
Question'OptionalField' attribute Pin
Hendrik Debedts5-Dec-06 8:16
Hendrik Debedts5-Dec-06 8:16 
AnswerRe: 'OptionalField' attribute Pin
Scott Dorman5-Dec-06 14:04
professionalScott Dorman5-Dec-06 14:04 
GeneralRe: 'OptionalField' attribute [modified] Pin
Hendrik Debedts5-Dec-06 22:32
Hendrik Debedts5-Dec-06 22:32 
AnswerRe: 'OptionalField' attribute Pin
Hendrik Debedts6-Dec-06 0:19
Hendrik Debedts6-Dec-06 0:19 
GeneralFileSystemWatcher question Pin
Alsvha5-Dec-06 5:20
Alsvha5-Dec-06 5:20 
AnswerRe: FileSystemWatcher question Pin
Stuart Wells5-Dec-06 6:05
Stuart Wells5-Dec-06 6:05 
GeneralRe: FileSystemWatcher question Pin
Hendrik Debedts5-Dec-06 8:06
Hendrik Debedts5-Dec-06 8:06 
GeneralRe: FileSystemWatcher question Pin
Alsvha5-Dec-06 8:22
Alsvha5-Dec-06 8:22 
GeneralRe: FileSystemWatcher question Pin
Luc Pattyn5-Dec-06 12:11
sitebuilderLuc Pattyn5-Dec-06 12:11 
GeneralRe: FileSystemWatcher question Pin
Alsvha5-Dec-06 20:49
Alsvha5-Dec-06 20:49 
GeneralRe: FileSystemWatcher question Pin
Dave Kreskowiak5-Dec-06 15:00
mveDave Kreskowiak5-Dec-06 15:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.