About 43,800 results
Open links in new tab
  1. .net - C# naming convention for constants? - Stack Overflow

    Oct 28, 2008 · 21 In its article Constants (C# Programming Guide), Microsoft gives the following example:

  2. c# - MVVM: Tutorial from start to finish? - Stack Overflow

    I'm a C#/Windows Forms programmer with more than 5 years experience. I've been investigating WPF using the MVVM (Model-View-ViewModel) design pattern. I have searched the Internet …

  3. How to convert a GUID to a string in C#? - Stack Overflow

    According to MSDN the method Guid.ToString(string format) returns a string representation of the value of this Guid instance, according to the provided format ...

  4. What is the difference between String and string in C#?

    Aug 10, 2008 · The use of "string" is just a shorthand way of referring to the "System.String" type, and it is used more commonly in C# code. Both "String" and "string" are interchangeable in …

  5. c# - Microsoft Coding Standard Document - Stack Overflow

    Oct 29, 2009 · Is there a Coding Standard document available for download from Microsoft ? I want to use their standards, mainly for C#.

  6. c# - Guid.Parse () or new Guid () - What's the difference ... - Stack ...

    What is the difference between these two ways of converting a string to System.Guid? Is there a reason to choose one over the other? var myguid = Guid.Parse("9546482E-887A-4CAB-A403 …

  7. C# how to create a Guid value? - Stack Overflow

    Feb 26, 2010 · var parsedGuid = System.Guid.Parse(guidString); If you just want to create a new guide and just use it in your application, just use one of the online GUID Generator tools online …

  8. C# coding standards for private member variables [closed]

    Mar 7, 2013 · I saw two common approaches for coding standards for private member variables: class Foo { private int _i; private string _id; } and class Foo { private int m_i; private str...

  9. Compiling/Executing a C# Source File in Command Prompt

    Feb 16, 2009 · How do you compile and execute a .cs file from a command-prompt window?

  10. Style guide for c#? - Stack Overflow

    Jan 13, 2011 · I like style guide used by google for c++, published here . Is there any similar style guide available for c# also? I'm looking for more of good practices along with simple things like …