Hidden .NET Base Class Library Classes? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-25T10:41:04Z http://stackoverflow.com/feeds/question/122784 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes 119 Hidden .NET Base Class Library Classes? John Sheehan 2008-09-23T18:23:11Z 2009-09-29T16:49:15Z <p>What are your favorite lesser-known .NET Base Class Library classes and methods?</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/122789#122789 22 Answer by John Sheehan for Hidden .NET Base Class Library Classes? John Sheehan 2008-09-23T18:24:09Z 2009-05-14T20:04:04Z <p>I didn't know about <a href="http://msdn.microsoft.com/en-us/library/system.net.webclient%28VS.80%29.aspx" rel="nofollow">System.Net.WebClient</a> until it was posted in an answer to a <a href="http://stackoverflow.com/questions/16833/how-do-you-download-and-extract-a-gzipped-file-with-c">question of mine</a>.</p> <pre><code>WebClient client = new WebClient (); client.DownloadFile("http://stackoverflow.com/", "target.html"); client.UploadFile("http://mysite.com/", "hello.txt"); </code></pre> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/122800#122800 19 Answer by leppie for Hidden .NET Base Class Library Classes? leppie 2008-09-23T18:25:05Z 2008-09-24T09:16:27Z <p><a href="http://msdn.microsoft.com/en-us/library/system.buffer.blockcopy.aspx" rel="nofollow">Buffer.BlockCopy</a></p> <p>Also <a href="http://msdn.microsoft.com/en-us/library/system.io.stringreader.aspx" rel="nofollow">StringReader</a> and <a href="http://msdn.microsoft.com/en-us/library/system.io.stringwriter.aspx" rel="nofollow">StringWriter</a>.</p> <p>Oops forgot about: <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.debugger.break.aspx" rel="nofollow">Debugger.Break</a></p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/122828#122828 3 Answer by Kent Boogaart for Hidden .NET Base Class Library Classes? Kent Boogaart 2008-09-23T18:28:40Z 2008-09-23T18:28:40Z <p><a href="http://msdn.microsoft.com/en-us/library/system.runtime.serialization.formatterservices.aspx" rel="nofollow">FormatterServices</a></p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/122832#122832 6 Answer by Jason Z for Hidden .NET Base Class Library Classes? Jason Z 2008-09-23T18:28:59Z 2008-09-23T18:28:59Z <p><a href="http://msdn.microsoft.com/en-us/library/system.text.utf8encoding.aspx" rel="nofollow">System.Text.UTF8Encoding</a> for converting streams.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/122837#122837 4 Answer by Wayne for Hidden .NET Base Class Library Classes? Wayne 2008-09-23T18:29:23Z 2008-09-23T18:29:23Z <p><a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.basevalidator(VS.80).aspx" rel="nofollow">BaseValidator</a> Makes writing Custom validated controls much easier.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/122967#122967 10 Answer by John Sheehan for Hidden .NET Base Class Library Classes? John Sheehan 2008-09-23T18:46:43Z 2008-09-23T18:46:43Z <p><a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.maildefinition.aspx" rel="nofollow">System.Web.UI.WebControls.MailDefinition</a></p> <p>"The MailDefinition class can be used by controls to create a MailMessage object from a text file or a string that contains the body of the e-mail message. Use the MailDefinition class to simplify creating predefined e-mail messages to be sent by a control."</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/122972#122972 15 Answer by Mitchel Sellers for Hidden .NET Base Class Library Classes? Mitchel Sellers 2008-09-23T18:47:28Z 2008-09-23T18:47:28Z <p>For some reason many people don't kow about System.Text.StringBuilder. I couldn't live without it!</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/122989#122989 65 Answer by RoyOsherove for Hidden .NET Base Class Library Classes? RoyOsherove 2008-09-23T18:51:15Z 2009-09-29T15:09:31Z <p>This saves a lot of typing on strings: </p> <pre><code>string.IsNullOrEmpty() </code></pre> <p>Also a hidden gem using events; when declaring an event, a nice way to make sure you never need to check if it's null, is by initializing it to an empty anonymous delegate at declaration time:</p> <pre><code>public event EventHandler MyASimpleEvent = delegate {}; </code></pre> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/123045#123045 49 Answer by Chris Wenham for Hidden .NET Base Class Library Classes? Chris Wenham 2008-09-23T18:59:22Z 2008-09-23T18:59:22Z <p><strong>System.Diagnostics.ConditionalAttribute</strong>. It makes the compiler ignore methods or classes that should only be active in certain build profiles. EG:</p> <pre><code> [Conditional("DEBUG")] private void DumpProperties() { foreach (PropertyInfo prop in this.GetType().GetProperties()) Console.WriteLine(prop.GetValue(this, null)); } </code></pre> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/123069#123069 108 Answer by Hitchhiker for Hidden .NET Base Class Library Classes? Hitchhiker 2008-09-23T19:02:49Z 2008-09-23T19:02:49Z <p><a href="http://msdn.microsoft.com/en-us/library/system.io.path(VS.80).aspx" rel="nofollow">Path</a> class. I can't count the times the lack of its usage came up in code-reviews. People tend to go for the string concatenations and sub-stringage instead of using <a href="http://msdn.microsoft.com/en-us/library/system.io.path.combine(VS.80).aspx" rel="nofollow">Path.Combine</a> and <a href="http://msdn.microsoft.com/en-us/library/system.io.path.getfilenamewithoutextension(VS.80).aspx" rel="nofollow">Path.GetFileNameWithoutExtension</a>, among others.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/123073#123073 58 Answer by RoyOsherove for Hidden .NET Base Class Library Classes? RoyOsherove 2008-09-23T19:03:47Z 2008-09-23T19:03:47Z <p>A cool way to log the name of the current method you're in:</p> <pre><code>string myMethodName = MethodBase.GetCurrentMethod().Name; Console.WriteLine(myMethodName); </code></pre> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/123094#123094 3 Answer by Bart Read for Hidden .NET Base Class Library Classes? Bart Read 2008-09-23T19:06:10Z 2008-09-23T19:06:10Z <p>System.Runtime.InteropServices.Marshal</p> <p>I hate having to do interop, and particularly PInvoke, but there are all kinds of goodies in Marshal for turning function pointers into delegates, and vice versa, turning Win32 error codes into something a little more helpful (often only a little though), and so on.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/123141#123141 93 Answer by Chris Wenham for Hidden .NET Base Class Library Classes? Chris Wenham 2008-09-23T19:13:23Z 2008-09-24T13:11:08Z <p><strong>System.Security.SecureString</strong> - More people should be aware of this if their program accepts passwords or passphrases, or stores credit card numbers in memory. SecureString values are stored encrypted (obfuscated, rather), but most importantly, they are <em>never swapped to disk</em> and can be disposed of immediately when you're done with them.</p> <p>They're tricky to use because you can only build them one character at a time (to encourage you to build them by capturing keystrokes as the user types their password), and require three lines of code to recover and then wipe their plain text, but when used properly they can make a program more secure by avoiding the virtual-memory vulnerability.</p> <pre><code>// Make a SecureString SecureString sPassphrase = new SecureString(); Console.WriteLine("Please enter your passphrase"); ConsoleKeyInfo input = Console.ReadKey(true); while (input.Key != ConsoleKey.Enter) { sPassphrase.AppendChar(input.KeyChar); Console.Write('*'); input = Console.ReadKey(true); } sPassphrase.MakeReadOnly(); // Recover plaintext from a SecureString // Marshal is in the System.Runtime.InteropServices namespace try { IntPtr ptrPassphrase = Marshal.SecureStringToBSTR(sPassphrase); string uPassphrase = Marshal.PtrToStringUni(ptrPassphrase); // ... use the string ... } catch { // error handling } finally { Marshal.ZeroFreeBSTR(ptrPassphrase); } </code></pre> <p>Edit: At the end of the example the SecureString is converted into a regular managed string, which makes it vulnerable again (be sure to use the try-catch-finally pattern to Zero the string after you're done with it). SecureString's use is in reducing the surface-area of attack by limiting the number of copies the Garbage Collector will make of the value, and reducing the likelihood of being written to the swap file.</p> <p>The .Net framework is gaining more support for SecureStrings that help eliminate the need to decrypt it. The PasswordBox control in WPF stores its value in a SecureString, System.Diagnostics.ProcessStartInfo's Password property takes a SecureString, and so does the constructor for X509Certificate2. Some third party components are beginning to take it as native currency, too.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/123418#123418 45 Answer by Ruben for Hidden .NET Base Class Library Classes? Ruben 2008-09-23T19:54:20Z 2008-09-23T19:54:20Z <p>Most definitely <code>String.Join(char separator, string[] list)</code> to create <code>"a,b,c"</code> from <code>{"a","b","c"</code>}. This alleviates keeping track of a boolean to check whether the first item is already used.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/123521#123521 15 Answer by zvikara for Hidden .NET Base Class Library Classes? zvikara 2008-09-23T20:08:03Z 2008-09-23T20:22:51Z <p>The <a href="http://msdn.microsoft.com/en-us/library/system.bitconverter.tostring.aspx" rel="nofollow">BitConverter.ToString</a> method is very useful when working with binary data. I use it for debugging, traces and within unit testing. </p> <p>It will take a byte array and return a printable string representation - something like "04-08-01-23-45-67-89-AB-CD-EF".</p> <p>I also use <a href="http://msdn.microsoft.com/en-us/library/system.text.regularexpressions.regex.split.aspx" rel="nofollow">Regex.Split(string, string)</a> for splitting a delimited strings.</p> <p>It is somewhat similar to <a href="http://msdn.microsoft.com/en-us/library/system.string.split.aspx" rel="nofollow">String.Split()</a>, but using Regex.Split() is much more intuitive: Regex.Split() result string array only contain the data you need, while String.Split() result also contains the delimiters.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/123614#123614 9 Answer by Panos for Hidden .NET Base Class Library Classes? Panos 2008-09-23T20:21:38Z 2008-09-23T20:21:38Z <p><a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.aspx" rel="nofollow">System.Diagnostics</a> namespace contains many "hidden" gems. I have used extensively the <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerstepthroughattribute.aspx" rel="nofollow"><code>DebuggerStepThroughAttribute</code></a>, I have subclassed many times the <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.tracelistener.aspx" rel="nofollow"><code>TraceListener</code></a> class and I want to see in more detail the <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.performancecounter.aspx" rel="nofollow"><code>PerformanceCounter</code></a>.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/123658#123658 33 Answer by Seb Nilsson for Hidden .NET Base Class Library Classes? Seb Nilsson 2008-09-23T20:30:15Z 2008-09-23T20:30:15Z <p><a href="http://msdn.microsoft.com/en-us/library/system.convert.aspx" rel="nofollow"><strong>System.Convert</strong></a> is a lot nicer than people think.</p> <p>It's <strong>very forgiving</strong> on what you put in. Just use <a href="http://reflector.red-gate.com/" rel="nofollow">Reflector</a> to see how it converts between different types.</p> <p>Ints are defaulted to 0 from bad input, bools to false and so on.</p> <p>It's made int.Parse, bool.Parse and all other .Parse almost obsolete for me. TryParse is still usefull for the most secure parsing.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/123761#123761 7 Answer by Jobi Joy for Hidden .NET Base Class Library Classes? Jobi Joy 2008-09-23T20:47:44Z 2009-09-29T15:04:40Z <p><strong>System.Linq</strong> is saving me a lot of time on Visual Studio 2008.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/123831#123831 4 Answer by Matthias for Hidden .NET Base Class Library Classes? Matthias 2008-09-23T20:58:37Z 2008-09-23T20:58:37Z <p><strong>System.Environment</strong> is one of my favorites. Especially the <strong>Workingset</strong> property.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/123916#123916 32 Answer by Max Schmeling for Hidden .NET Base Class Library Classes? Max Schmeling 2008-09-23T21:12:40Z 2008-09-23T21:12:40Z <p>IEnumerable&#60;T&#62; isn't used nearly enough if you ask me.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/124033#124033 24 Answer by Chris Pietschmann for Hidden .NET Base Class Library Classes? Chris Pietschmann 2008-09-23T21:31:06Z 2008-09-23T21:31:06Z <p><strong>System.Web.VirtualPathUtility</strong></p> <p>Provides utility methods for common virtual path operations.</p> <p><a href="http://msdn.microsoft.com/en-us/library/system.web.virtualpathutility.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.web.virtualpathutility.aspx</a></p> <pre><code>Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Dim sb As New StringBuilder() Dim pathstring As String = Context.Request.FilePath.ToString() sb.Append("Current file path = " &amp; pathstring &amp; "&lt;br /&gt;") sb.Append("File name = " &amp; VirtualPathUtility.GetFileName(pathstring).ToString() &amp; "&lt;br /&gt;") sb.Append("File extension = " &amp; VirtualPathUtility.GetExtension(pathstring).ToString() &amp; "&lt;br /&gt;") sb.Append("Directory = " &amp; VirtualPathUtility.GetDirectory(pathstring).ToString() &amp; "&lt;br /&gt;") Response.Write(sb.ToString()) Dim sb2 As New StringBuilder() Dim pathstring1 As String = Context.Request.CurrentExecutionFilePath.ToString() sb2.Append("Current Executing File Path = " &amp; pathstring1.ToString() &amp; "&lt;br /&gt;") sb2.Append("Is Absolute = " &amp; VirtualPathUtility.IsAbsolute(pathstring1).ToString() &amp; "&lt;br /&gt;") sb2.Append("Is AppRelative = " &amp; VirtualPathUtility.IsAppRelative(pathstring1).ToString() &amp; "&lt;br /&gt;") sb2.Append("Make AppRelative = " &amp; VirtualPathUtility.ToAppRelative(pathstring1).ToString() &amp; "&lt;br /&gt;") Response.Write(sb2.ToString()) End Sub </code></pre> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/124289#124289 17 Answer by Gulzar for Hidden .NET Base Class Library Classes? Gulzar 2008-09-23T22:21:59Z 2009-09-29T15:03:11Z <p>This is cool. <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.visualstyles.visualstyleinformation.aspx" rel="nofollow">VisualStyleInformation Class</a> provides a lot of information about the current visual style of the operating system.</p> <p><a href="http://weblogs.asp.net/miked/archive/2005/07/07/418452.aspx" rel="nofollow">System.Diagnostics.Debugger.Break()</a> is used by virtually everyone but is very convenient for debugging .NET services.</p> <p><a href="http://blogs.x2line.com/al/archive/2007/06/08/3148.aspx" rel="nofollow">NetworkChange.NetworkAvailabilityChanged Event</a> makes it easy to monitor network availability.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/124310#124310 5 Answer by sallen for Hidden .NET Base Class Library Classes? sallen 2008-09-23T22:25:54Z 2008-09-23T22:25:54Z <p>If you are drawing custom Windows Forms controls, then the following classes are essential for your OnPaint() method (or Paint event):</p> <p>using System.Windows.Forms;</p> <ul> <li><a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.controlpaint.aspx" rel="nofollow" title="ControlPaint">ControlPaint</a></li> <li><a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.textrenderer.aspx" rel="nofollow" title="TextRenderer">TextRenderer</a></li> <li>*Renderer (eg <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.buttonrenderer.aspx" rel="nofollow" title="ButtonRenderer">ButtonRenderer</a>, <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.textboxrenderer.aspx" rel="nofollow" title="TextBoxRenderer">TextBoxRender</a>, etc)</li> </ul> <p>These classes all provide methods that will do most of the drawing work for you and keep your controls looking professional and native.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/124424#124424 26 Answer by Mike Post for Hidden .NET Base Class Library Classes? Mike Post 2008-09-23T22:53:15Z 2009-09-29T07:26:45Z <p>TextRenderer.MeasureText() is great for figuring out how large to draw your text. So often I see:</p> <pre><code>// this == something derived from Control Graphics g = this.CreateGraphics(); Size size = g.MeasureString(this.Text, this.Font).ToSize(); g.Dispose(); </code></pre> <p>When really all you need is:</p> <pre><code>Size size = TextRenderer.MeasureText(this.Text, this.Font); </code></pre> <p>The former is how you did it in 1.0 and 1.1; the latter is how you do it in 2.0+. It's much cleaner, doesn't requiring creating an object which must be disposed, and doesn't leave you open to accidentally not disposing of a resource. Plus if you use TextRenderer.DrawText() your text <a href="http://blogs.msdn.com/jfoscoding/archive/2005/10/13/480632.aspx" rel="nofollow">will look better and localize better</a>. This stuff just plain rocks when you're doing custom controls.</p> <p><strong>Edit:</strong> On the I18N/G11N front, here's more info: the shaping engines for international text have been updated quite a bit in the <a href="http://en.wikipedia.org/wiki/Uniscribe" rel="nofollow">Uniscribe subsystem</a> of the Windows operating system, but not in GDI+ subsystem. So sometimes things looked strange/wrong if your .NET app was using the Graphics based method (AKA, GDI+). However, using the TextRenderer approach (AKA, Uniscribe) eliminates these problems and allows you to render text correctly (perfectly?) in <a href="http://blogs.msdn.com/michkap/archive/2005/01/26/360685.aspx" rel="nofollow">the new locales introduced with Windows XP SP2</a> (such as Bengali and Croatian). (Caveat emptor: I have no idea how or even if either of these methods play with vendor specific extensions to specific code pages.)</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/124445#124445 1 Answer by Slace for Hidden .NET Base Class Library Classes? Slace 2008-09-23T22:56:45Z 2009-09-29T14:58:30Z <p>For generating code files I like System.CodeDom.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/124656#124656 17 Answer by jesal for Hidden .NET Base Class Library Classes? jesal 2008-09-24T00:07:02Z 2008-09-24T00:07:02Z <p>Here's a little snippet to tell which class/method the call is coming from. Useful in some special situations:</p> <pre><code>StackFrame frame = new StackFrame(1); frame.GetMethod().Name; //Gets the current method name MethodBase method = frame.GetMethod(); method.DeclaringType.Name //Gets the current class name </code></pre> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/124716#124716 9 Answer by gabosgab for Hidden .NET Base Class Library Classes? gabosgab 2008-09-24T00:23:57Z 2008-09-24T00:23:57Z <p>String.Format(). Allows you to get rid of the wonkiness of "This" + " is" + " my favorite " + " Application";</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/125221#125221 67 Answer by Robert Paulson for Hidden .NET Base Class Library Classes? Robert Paulson 2008-09-24T03:14:28Z 2008-09-24T03:14:28Z <p><strong>System.Diagnostics.DebuggerDisplay</strong></p> <p>When you're debugging, if the class is attributed, visual studio will display the information on mouse-over. It even allows you to put in properties of private fields, etc.</p> <pre><code>[System.Diagnostics.DebuggerDisplay("MyClass: ID={ID} Name={Name} ChildName={_child.Name}")] </code></pre> <p>Ref: <a href="http://msdn.microsoft.com/en-us/library/x810d419.aspx" rel="nofollow">msdn</a></p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/126152#126152 1 Answer by icelava for Hidden .NET Base Class Library Classes? icelava 2008-09-24T09:11:35Z 2008-09-24T09:11:35Z <p>I like to use <a href="http://msdn.microsoft.com/en-us/library/system.collections.caseinsensitivecomparer.aspx" rel="nofollow">System.Collections.CaseInsensitiveComparer</a> to compare strings.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/126181#126181 18 Answer by aku for Hidden .NET Base Class Library Classes? aku 2008-09-24T09:22:32Z 2009-09-29T14:57:13Z <h3><a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.typeconverter.aspx" rel="nofollow">TypeConverter</a> class</h3> <p>It saved me a lot of time. And it helped Stack Overflow users to solve their problems:</p> <ul> <li><a href="http://stackoverflow.com/questions/118719/how-do-i-effectively-persist-a-net-font-object">How do I effectively persist a .NET font object ?</a></li> <li><a href="http://stackoverflow.com/questions/110763/how-to-convert-from-decimal-to-t">How to convert from Decimal to T?</a></li> <li><a href="http://stackoverflow.com/questions/116797/passing-int-array-as-parameter-in-web-user-control">Passing int array as parameter in web user control</a></li> <li><a href="http://stackoverflow.com/questions/796607/how-do-i-override-tostring-in-c-enums/796897">How do I override ToString in C# enums?</a></li> </ul> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/126268#126268 0 Answer by Dror Helper for Hidden .NET Base Class Library Classes? Dror Helper 2008-09-24T09:48:35Z 2008-09-24T09:48:35Z <pre><code>public static int Compare(string strA, string strB, bool ignoreCase) </code></pre> <p>Great to compare two strings with possible difference in letter case.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/126280#126280 4 Answer by Dror Helper for Hidden .NET Base Class Library Classes? Dror Helper 2008-09-24T09:53:02Z 2008-09-24T09:53:02Z <pre><code>System.Reflection.Assembly.GetExecutingAssembly.Location </code></pre> <p>Gets the path (and name) of the current running application.</p> <p>I have a few related commands at <a href="http://blogs.microsoft.co.il/blogs/dhelper/archive/2008/08/18/how-to-find-assembly-path-name-and-version-at-runtime.aspx" rel="nofollow">my Blog</a></p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/126597#126597 11 Answer by GvS for Hidden .NET Base Class Library Classes? GvS 2008-09-24T11:30:51Z 2008-09-24T11:30:51Z <p>I just found:</p> <pre><code>System.Security.Cryptography.ProtectData </code></pre> <p>Used to encrypt data for the current user or the local machine.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/126953#126953 4 Answer by Dror Helper for Hidden .NET Base Class Library Classes? Dror Helper 2008-09-24T12:57:21Z 2008-09-24T13:08:00Z <p>Using StackFrame to get information about calling method and running class. You can travel the stack and get the methodName, calling calss etc. You can get the stackFrame using</p> <pre><code>StackFrame frame = new StackFrame(n); </code></pre> <p>Where n is the layer above the current call And then you can retrive information by using its properties. for example use the following the get the information of the calling method:</p> <pre><code>MethodBase methodBase = frame.GetMethod(); </code></pre> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/127441#127441 32 Answer by dcigic for Hidden .NET Base Class Library Classes? dcigic 2008-09-24T14:17:30Z 2008-09-24T14:17:30Z <pre><code>System.Collections.ObjectModel.ObservableCollection&lt;T&gt; </code></pre> <p>Represents a dynamic data collection that provides notifications when items get added, removed, or when the whole list is refreshed.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/131503#131503 39 Answer by lfoust for Hidden .NET Base Class Library Classes? lfoust 2008-09-25T04:39:15Z 2008-09-25T04:39:15Z <pre><code>System.Data.Common.DbConnectionStringBuilder </code></pre> <p>and</p> <pre><code>System.Data.SqlClient.SqlConnectionStringBuilder </code></pre> <p>These allow you to build a connection string in a programmatic way without have to remember the specific syntax.</p> <p>Documentation: <a href="http://msdn.microsoft.com/en-us/library/system.data.common.dbconnectionstringbuilder.aspx" rel="nofollow">DbConnectionStringBuilder on MSDN</a></p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/131586#131586 24 Answer by Jivko Petiov for Hidden .NET Base Class Library Classes? Jivko Petiov 2008-09-25T05:19:43Z 2008-09-25T05:19:43Z <p><code>HashSet&lt;T&gt;</code>. It is a new class in the .NET Framework 3.5 and is very similar to <code>List&lt;T&gt;</code> only better. </p> <p><a href="http://blogs.msdn.com/bclteam/archive/2006/11/09/introducing-hashset-t-kim-hamilton.aspx" rel="nofollow">http://blogs.msdn.com/bclteam/archive/2006/11/09/introducing-hashset-t-kim-hamilton.aspx</a></p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/136993#136993 19 Answer by DotNetGuy for Hidden .NET Base Class Library Classes? DotNetGuy 2008-09-25T23:58:04Z 2008-09-26T00:04:23Z <pre><code>System.Web.Security.FormsAuthentication .HashPasswordForStoringInConfigFile(string password, string format) </code></pre> <p>Does the simple and common task of getting the MD5 or SHA1 hash of a given string. Since almost every system I have ever written stored password hashes instead of encrypted data or the plaintext, this is a godsend to avoid mucking about with the Crypto stuff.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/142496#142496 48 Answer by Carra for Hidden .NET Base Class Library Classes? Carra 2008-09-26T23:38:02Z 2008-09-29T18:32:51Z <p>Using <code>System.Environment.NewLine</code> instead of "\r\n".</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/142860#142860 2 Answer by torial for Hidden .NET Base Class Library Classes? torial 2008-09-27T03:13:06Z 2008-09-27T03:13:06Z <p>The DebuggerStepThroughAttribute is great for properties and also for those helper functions that you have no desire to step through. Unfortunately, it seems rarely known:</p> <p><a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerstepthroughattribute.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerstepthroughattribute.aspx</a></p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/142905#142905 17 Answer by Erick Sgarbi for Hidden .NET Base Class Library Classes? Erick Sgarbi 2008-09-27T03:38:25Z 2008-09-27T03:38:25Z <p>Not really hidden but:</p> <ul> <li><strong>System.Drawing.Printing.PrinterSettings.InstalledPrinters</strong>: Returns a collection with all printer names installed in the machine.</li> </ul> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/169285#169285 44 Answer by naumlist for Hidden .NET Base Class Library Classes? naumlist 2008-10-03T23:18:54Z 2008-10-03T23:18:54Z <p>Getting the list of countries. Useful for populating the drop down box.</p> <pre><code>foreach (CultureInfo ci in CultureInfo.GetCultures(CultureTypes.AllCultures &amp; ~CultureTypes.NeutralCultures { RegionInfo ri = new RegionInfo(ci.LCID); Console.WriteLine(ri.EnglishName); } </code></pre> <p>ref: <a href="http://jdconley.com/blog/archive/2007/09/05/list-of-country-names.aspx#1" rel="nofollow">http://jdconley.com/blog/archive/2007/09/05/list-of-country-names.aspx#1</a></p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/175691#175691 1 Answer by John Chuckran for Hidden .NET Base Class Library Classes? John Chuckran 2008-10-06T18:59:09Z 2008-10-06T19:43:08Z <p>Expanding the My Namespace has always been useful to me</p> <pre><code>Namespace My &lt;Global.Microsoft.VisualBasic.HideModuleName()&gt; _ Friend Module MyStuff Sub Foo() End Sub End Module End Namespace </code></pre> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/175853#175853 9 Answer by Robert Rossney for Hidden .NET Base Class Library Classes? Robert Rossney 2008-10-06T19:40:17Z 2008-10-06T19:40:17Z <p>I'd have to say <code>System.ComponentModel.BackgroundWorker</code>. </p> <p>It's not exactly <em>easy</em> to use, because you still have to understand how asynchronous method calls work, and you have to know about avoiding cross-thread exceptions, using <code>Invoke</code> to update the UI, etc. But it's considerably easier to use than <code>System.Threading.Thread</code>, which is what a lot of developers gravitate towards when they need to implement a background process.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/219389#219389 5 Answer by Pradeep for Hidden .NET Base Class Library Classes? Pradeep 2008-10-20T18:27:39Z 2008-10-20T18:39:14Z <pre><code>Type.TryParse() Environment.NewLine </code></pre> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/222251#222251 1 Answer by John Sheehan for Hidden .NET Base Class Library Classes? John Sheehan 2008-10-21T15:16:23Z 2008-10-21T15:16:23Z <p><a href="http://msdn.microsoft.com/en-us/library/system.configuration.install.installer.aspx" rel="nofollow">System.Configuration.Install.AssemblyInstaller</a> to <a href="http://blogs.msdn.com/helloworld/archive/2008/10/21/how-to-install-windows-service-programmatically.aspx" rel="nofollow">install services programmatically</a></p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/236774#236774 5 Answer by Mike Two for Hidden .NET Base Class Library Classes? Mike Two 2008-10-25T18:04:54Z 2008-10-25T18:04:54Z <p>More of a runtime feature, but I recently learned that there are two garbage collectors. The workstation gc and the server gc. Workstation is the default, but server is much faster on multicore machines.</p> <pre><code> &lt;configuration&gt; &lt;runtime&gt; &lt;gcServer enabled="true"/&gt; &lt;/runtime&gt; &lt;/configuration&gt; </code></pre> <p>Be careful. The server gc requires more memory.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/258995#258995 0 Answer by jon without an h for Hidden .NET Base Class Library Classes? jon without an h 2008-11-03T15:31:24Z 2008-11-03T15:31:24Z <p><strong><a href="http://msdn.microsoft.com/en-us/library/system.runtime.remoting.proxies.realproxy.aspx" rel="nofollow">System.Runtime.Remoting.Proxies.RealProxy</a></strong>.</p> <p>This class is pretty esoteric and normally only used in weird remoting scenarios; however, I have used it for the ability to dynamically implement an interface. It is also used by some mocking frameworks for the same purpose. See also <a href="http://msdn.microsoft.com/en-us/library/scx1w94y(VS.71).aspx" rel="nofollow">Extending RealProxy</a>.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/411326#411326 8 Answer by xrost for Hidden .NET Base Class Library Classes? xrost 2009-01-04T17:26:32Z 2009-01-04T17:26:32Z <p>Very helpful class to measure performance <a href="http://msdn2.microsoft.com/en-us/library/system.diagnostics.stopwatch.aspx" rel="nofollow">System.Diagnostics.StopWatch</a><br/> See detailed posts <a href="http://stackoverflow.com/questions/28637/is-datetime-now-the-best-way-to-measure-a-functions-performance">here</a></p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/414240#414240 1 Answer by John Sheehan for Hidden .NET Base Class Library Classes? John Sheehan 2009-01-05T19:39:33Z 2009-01-05T19:39:33Z <p><a href="http://msdn.microsoft.com/en-us/library/system.text.regularexpressions.matchevaluator.aspx" rel="nofollow">MatchEvaluator Delegate</a>: Represents the method that is called each time a regular expression match is found during a Replace method operation.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/615681#615681 10 Answer by Brann for Hidden .NET Base Class Library Classes? Brann 2009-03-05T17:02:41Z 2009-03-05T17:02:41Z <p>You can play default windows sounds this way :</p> <pre><code>System.Media.SystemSounds.Beep.Play(); ... System.Media.SystemSounds.Question.Play(); </code></pre> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/615730#615730 3 Answer by Pat for Hidden .NET Base Class Library Classes? Pat 2009-03-05T17:20:20Z 2009-03-05T17:20:20Z <p>In line with String.IsNullOrEmpty().....</p> <p>String.Empty</p> <p>usage: </p> <pre><code>string s = String.Empty; //OR string s = string.Empty; </code></pre> <p>instead of </p> <pre><code>string s = ""; </code></pre> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/630158#630158 5 Answer by SDX2000 for Hidden .NET Base Class Library Classes? SDX2000 2009-03-10T13:27:27Z 2009-03-10T13:27:27Z <p><a href="http://msdn.microsoft.com/en-us/library/system.weakreference.aspx" rel="nofollow">WeakReference</a>. Extract from <a href="http://msdn.microsoft.com/en-us/library/ms404247.aspx" rel="nofollow">here</a> ...</p> <blockquote> <p>The garbage collector cannot collect an object in use by an application while the application's code can reach that object. The application is said to have a strong reference to the object.</p> <p>A weak reference permits the garbage collector to collect the object while still allowing the application to access the object. </p> </blockquote> <p>This can be used to implement weak events, see <a href="http://www.codeproject.com/KB/cs/WeakEvents.aspx" rel="nofollow">here</a></p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/632632#632632 13 Answer by Kyralessa for Hidden .NET Base Class Library Classes? Kyralessa 2009-03-10T23:02:52Z 2009-03-10T23:02:52Z <p>Tired of typing the unwieldy</p> <pre><code>string.Equals(x, y, StringComparison.CurrentCultureIgnoreCase) </code></pre> <p>?</p> <p>Instead, try one of the properties on the StringComparer class:</p> <p><a href="http://msdn.microsoft.com/en-us/library/system.stringcomparer%5Fproperties.aspx" rel="nofollow">StringComparer Properties</a></p> <p>Instead of the above, you can type:</p> <pre><code>StringComparer.CurrentCultureIgnoreCase.Equals(x, y); </code></pre> <p>Even though it's only slightly shorter, it's nice because it keeps the focus on the two things you're comparing, without the distraction of the <code>StringComparison.CurrentCultureIgnoreCase</code> parameter. And you can break it up if you like:</p> <pre><code>var comparer = StringComparer.CurrentCultureIgnoreCase; comparer.Equals(x, y); </code></pre> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/689823#689823 0 Answer by Chris S for Hidden .NET Base Class Library Classes? Chris S 2009-03-27T13:46:31Z 2009-03-27T13:46:31Z <p>This isn't really a method but just something I found in the <a href="http://www.koders.com/csharp/fid6135F77482E6125D97DC3197AD53876AE1098662.aspx" rel="nofollow">String</a> class <em>source</em>:</p> <pre><code>// The Empty constant holds the empty string value. // We need to call the String constructor so that the compiler doesn't mark this as a literal. // Marking this as a literal would mean that it doesn't show up as a field which we can access // from native. public static readonly String Empty = ""; </code></pre> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/689864#689864 3 Answer by Simon Svensson for Hidden .NET Base Class Library Classes? Simon Svensson 2009-03-27T14:00:28Z 2009-03-27T14:00:28Z <p><a href="http://msdn.microsoft.com/en-us/library/system.runtime.serialization.formatterservices.getuninitializedobject.aspx" rel="nofollow">FormatterServices.GetUninitializedObject</a></p> <p>Creates a new instance of a type <em>without</em> calling any constructor. This will work with private constructors, non-parameterless-constructors, any type of constructor (since they aint called).</p> <p>I believe this is the only way to ensure that a static constructor on a type is executed if you only have a Type instance. (You can not invoke it with reflection, and the Activator may fail due to nonmatching constructors.)</p> <p>A somewhat esoteric problem, and solution.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/724411#724411 1 Answer by Peter Gfader for Hidden .NET Base Class Library Classes? Peter Gfader 2009-04-07T07:01:57Z 2009-04-07T07:01:57Z <p><a href="http://msdn.microsoft.com/en-us/library/microsoft.visualstudio.testtools.unittesting.ignoreattribute.aspx" rel="nofollow">Ignore Attribute</a> on Unit-Tests for ignoring slow performance tests during development </p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/834018#834018 1 Answer by Think Before Coding for Hidden .NET Base Class Library Classes? Think Before Coding 2009-05-07T10:57:24Z 2009-05-07T10:57:24Z <p><code>Decimal</code> preserves trailing zeros :</p> <pre><code>decimal x = 1.0m; decimal y = 1.00m; decimal z = 1m; Assert.IsTrue(x == y); Assert.IsFalse(x.ToString() == y.ToString()); Assert.AreEqual("1.0", x.ToString(CultureInfo.InvariantCulture)); Assert.AreEqual("1.00", y.ToString(CultureInfo.InvariantCulture)); Assert.AreEqual("1", z.ToString(CultureInfo.InvariantCulture)); Assert.AreEqual("1.000", (x*y).ToString(CultureInfo.InvariantCulture)); </code></pre> <p>This behavior is documented in the MSDN library.</p> <p>The <code>decimal.Parse</code> method keeps track of trailing zeros too :</p> <pre><code>decimal x= decimal.Parse("1.0", CultureInfo.InvariantCulture); decimal y= decimal.Parse("1.00", CultureInfo.InvariantCulture); Assert.AreEqual("1.0", x.ToString(CultureInfo.InvariantCulture)); Assert.AreEqual("1.00", y.ToString(CultureInfo.InvariantCulture)); </code></pre> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/834249#834249 0 Answer by Dmitry Lobanov for Hidden .NET Base Class Library Classes? Dmitry Lobanov 2009-05-07T12:00:32Z 2009-05-07T12:00:32Z <p>Really useful class is <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.stopwatch.aspx" rel="nofollow">System.Diagnostics.Stopwatch</a>. It saves you from inventing a bicycle every time you need to measure time. It's really helpful when you need to make some time dependent work (perhaps periodic) in some thread.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/865479#865479 3 Answer by bbmud for Hidden .NET Base Class Library Classes? bbmud 2009-05-14T20:14:50Z 2009-05-14T20:14:50Z <p>System.Net.Mail.MailAddress - no more regexp for server-side email address validation ;)</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/940542#940542 3 Answer by Nathan Koop for Hidden .NET Base Class Library Classes? Nathan Koop 2009-06-02T16:35:06Z 2009-06-02T16:35:06Z <p>I came across this today <a href="http://msdn.microsoft.com/en-us/library/system.data.sqltypes.sqldatetime.aspx" rel="nofollow">System.Data.SqlTypes.SqlDateTime</a></p> <p>it has</p> <pre><code>System.Data.SqlTypes.SqlDateTime.MinValue; System.Data.SqlTypes.SqlDateTime.MaxValue; </code></pre> <p>among other methods &amp; properties.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/1160123#1160123 3 Answer by HuBeZa for Hidden .NET Base Class Library Classes? HuBeZa 2009-07-21T15:55:05Z 2009-07-27T10:17:36Z <p>Convert hexadecimal\octal\binary string to decimal:</p> <pre><code>Convert.ToInt32("2A", 16); // equals 42 Convert.ToInt32("52", 8); // equals 42 Convert.ToInt32("101010", 2); // equals 42 </code></pre> <p>A great way to convert numbers to byte array:</p> <pre><code>byte[] bytes = BitConverter.GetBytes(32767); </code></pre> <p>Or better, use <a href="http://www.yoda.arachsys.com/csharp/miscutil/" rel="nofollow">Jon Skeet's MiscUtil</a> for endian bit conversion.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/1174338#1174338 1 Answer by Dan Diplo for Hidden .NET Base Class Library Classes? Dan Diplo 2009-07-23T20:38:09Z 2009-07-23T20:38:09Z <p>Easy way of <a href="http://msdn.microsoft.com/en-us/library/system.web.security.formsauthentication.hashpasswordforstoringinconfigfile%28VS.80%29.aspx" rel="nofollow">making an MD5 or SHA1 hash</a>:</p> <pre><code>string hash = System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile("string to hash", "MD5"); </code></pre> <p>Quick way of generating a unique, temporary file on disk:</p> <pre><code>string tempFilePath = System.IO.Path.GetTempFileName(); </code></pre> <p>The <a href="http://msdn.microsoft.com/en-us/library/system.web.virtualpathutility.aspx" rel="nofollow">System.Web.VirtualPathUtility</a> class also has some interesting methods for manipulating file paths.</p> <p>Parse an enum into a string array in one line (eg. get all known colours from KnowColor enumeration into an array):</p> <pre><code>string[] colours = System.Enum.GetNames(typeof(System.Drawing.KnownColor)); </code></pre> <p>If you want to annoy your server admin when he's at the console, add this to your web app :D</p> <pre><code>System.Media.SystemSounds.Exclamation.Play(); </code></pre> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/1187515#1187515 1 Answer by blowdart for Hidden .NET Base Class Library Classes? blowdart 2009-07-27T10:37:27Z 2009-07-27T10:37:27Z <p><a href="http://msdn.microsoft.com/en-us/library/system.security.securityelement.escape.aspx" rel="nofollow">System.Security.SecurityElement.Escape</a></p> <p>Escapes XML entities from a string so you can use it within an XML element. It's used by the framework in generation WS-Security XML, but saves four string replace statements in your own code.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/1187623#1187623 3 Answer by dariom for Hidden .NET Base Class Library Classes? dariom 2009-07-27T11:18:00Z 2009-07-27T11:18:00Z <p>I use these built-in delegate types (and their "overloaded" cousins) all the time:</p> <ul> <li><code>Func&lt;T, TResult&gt;</code></li> <li><code>Action&lt;T&gt;</code></li> <li><code>Predicate&lt;T&gt;</code></li> </ul> <p>Along with Lambdas is C# 3.0 they're pretty useful and can help make things more readable. (You can of course still use them with C# 2.0 and anonymous delegates).</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/1330865#1330865 19 Answer by David Basarab for Hidden .NET Base Class Library Classes? David Basarab 2009-08-25T20:40:49Z 2009-08-25T20:40:49Z <pre><code>System.IO.Path.Combine </code></pre> <p>Use this instead of concatenating the 2 strings yourself.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/1330916#1330916 30 Answer by David Basarab for Hidden .NET Base Class Library Classes? David Basarab 2009-08-25T20:48:27Z 2009-08-25T20:48:27Z <p>Use the </p> <pre><code>System.Diagnostics.Stopwatch </code></pre> <p>Don't do StartTime with DateTime, and then EndTime with DateTime.</p> <p>See this <a href="http://stackoverflow.com/questions/28637/is-datetime-now-the-best-way-to-measure-a-functions-performance/28648#28648">answer</a>.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/1330918#1330918 9 Answer by marcc for Hidden .NET Base Class Library Classes? marcc 2009-08-25T20:48:47Z 2009-08-25T20:48:47Z <p>I don't think it's a hidden feature, but I don't see it used often:</p> <pre><code>[System.Diagnostics.DebuggerStepThrough] </code></pre> <p>Quite useful when you have a pile of accessor-type functions or something which you don't want to be stepping into while debugging.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/1330947#1330947 7 Answer by Yoooder for Hidden .NET Base Class Library Classes? Yoooder 2009-08-25T20:56:31Z 2009-08-25T20:56:31Z <p>Here's one, inspired by <a href="http://stackoverflow.com/users/101280/marcc">Marcc</a>'s <a href="http://stackoverflow.com/questions/1330829/hidden-features-of-net/1330918#1330918">related Diagnostics attribute</a>:</p> <p><a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerdisplayattribute.aspx" rel="nofollow">System.Diagnostics.DebuggerDisplay</a></p> <p>It allows you to define the format of the string displayed in the Immediate / Locals window of Visual Studio, providing a string like "Person: {name} Cars: {cars.Count}" will display in the windows like "Person: John Doe Cars: 2".</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/1330955#1330955 3 Answer by Cheeso for Hidden .NET Base Class Library Classes? Cheeso 2009-08-25T20:57:59Z 2009-09-29T11:31:50Z <p>My favorite hidden feature is the SDK. OK, not very hidden, for some people, but most people seem to be able to develop .NET applications only with a tool or IDE, like Visual Studio. The SDK is free, and for small applications it's way quicker for me to write them up in emacs and then just build them with the command line compilers, csc.exe or vbc.exe.</p> <p>Plus all the SDK tools are handy, too. <a href="http://msdn.microsoft.com/en-us/library/x6c1kb0s%28VS.71,printer%29.aspx" rel="nofollow">XML Schema Definition Tool</a> (xsd.exe), <a href="http://msdn.microsoft.com/en-us/library/k5b5tt23%28VS.80,printer%29.aspx" rel="nofollow">Strong Name Tool</a> (sn.exe), and many others.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/1330986#1330986 5 Answer by KeeperOfTheSoul for Hidden .NET Base Class Library Classes? KeeperOfTheSoul 2009-08-25T21:04:55Z 2009-09-29T11:26:40Z <p><a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.typedescriptor.aspx" rel="nofollow">TypeDescriptor</a> when using <a href="http://en.wikipedia.org/wiki/Windows%5FForms" rel="nofollow">Windows Forms</a> data binding. This is how BindingSource can pretend to be any other object type.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/1332528#1332528 2 Answer by 280Z28 for Hidden .NET Base Class Library Classes? 280Z28 2009-08-26T05:33:58Z 2009-09-29T11:25:29Z <p>I found several cases where people were not aware of certain properties of the <code>Environment</code> class. In particular, I cleaned up several places in code and changed it to:</p> <ul> <li><a href="http://msdn.microsoft.com/en-us/library/system.environment.newline.aspx" rel="nofollow"><code>Environment.NewLine</code></a> (unit testing a templating engine that runs in Mono on *nix and .NET on Windows = HUGE improvement)</li> <li><a href="http://msdn.microsoft.com/en-us/library/system.environment.currentdirectory.aspx" rel="nofollow"><code>Environment.CurrentDirectory</code></a> (replaced <code>Path.GetFullPath('.')</code> throughout a file-manipulating utility)</li> </ul> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/1332546#1332546 15 Answer by PVitt for Hidden .NET Base Class Library Classes? PVitt 2009-08-26T05:38:53Z 2009-08-26T05:38:53Z <p><code>String.Empty</code> seems to be a hidden feature for many developers. <code>String.IsNullOrEmpty(string)</code> too.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/1332552#1332552 3 Answer by 280Z28 for Hidden .NET Base Class Library Classes? 280Z28 2009-08-26T05:40:53Z 2009-08-26T05:40:53Z <p>The <a href="http://clrinterop.codeplex.com/" rel="nofollow">Managed, Native, and COM Interop Team</a> at CodePlex have released a modified, open source <a href="http://www.codeplex.com/clrinterop/Release/ProjectReleases.aspx?ReleaseId=17579" rel="nofollow">TlbImp tool</a> that allows simple creation of customized wrappers for pesky COM libraries.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/1332566#1332566 1 Answer by 280Z28 for Hidden .NET Base Class Library Classes? 280Z28 2009-08-26T05:47:07Z 2009-08-26T05:47:07Z <p>If you have a custom MSBuild task in your project that processes a file and subsequently creates <code>.cs</code> files to include in the same build, changes to the source file of the transformation often won't show in debugging without building twice. When you are generating a single file based solely on the content of a single source file, this task is best solved with a SingleFileGenerator. For multiple inputs and/or outputs, you may be stuck with an MSBuild task. In this case you can fix Visual Studio's dependency analysis by adding the following to your <code>.csproj</code> file:</p> <pre><code>&lt;PropertyGroup&gt; &lt;UseHostCompilerIfAvailable&gt;False&lt;/UseHostCompilerIfAvailable&gt; &lt;/PropertyGroup&gt; </code></pre> <p>It's introduces a few other annoyances, but it will allow you to have deterministic, correct single builds (a rather important goal).</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/1332579#1332579 8 Answer by 280Z28 for Hidden .NET Base Class Library Classes? 280Z28 2009-08-26T05:51:51Z 2009-08-26T18:55:21Z <p>If you have a very complicated object to debug and don't want to spend the time creating a Visualizer to get a specialized view, you can use the built-in HTML Visualizer by creating a <code>ToHtmlString()</code> method in your class. This is based on the fact that the .NET debugger very reliably allows you to add function calls in your watch windows.</p> <p>Here's an example I recently did of presenting an interleaved time-lapse view of the data state throughout a group of tasks:</p> <p><a href="http://www.280z28.org/images/vmx/2009-08-23-Annotator.png" rel="nofollow"><img src="http://www.280z28.org/images/vmx/2009-08-23-Annotator-Small.png" alt="Compiler State View" /></a></p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/1332644#1332644 2 Answer by Yoooder for Hidden .NET Base Class Library Classes? Yoooder 2009-08-26T06:15:15Z 2009-08-26T06:15:15Z <pre><code>Microsoft.VisualBasic.IsNumeric(object) </code></pre> <p>Despite being in the Microsoft.VisualBasic.dll assembly, this method can be called by C# just as easily and can quickly let you know if the object being tested can be evaluated as a number.</p> <p>Related to it are the various <code>TryParse()</code> methods, which attempt to evaluate an object as a number but don't raise exceptions if the call fails... These can be found under a variety of different types such as <code>System.Int32</code> and <code>System.DateTime</code></p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/1332921#1332921 2 Answer by KeeperOfTheSoul for Hidden .NET Base Class Library Classes? KeeperOfTheSoul 2009-08-26T07:25:56Z 2009-08-26T07:25:56Z <p>If you're trying to convert between big/little endian then there is <a href="http://msdn.microsoft.com/en-us/library/system.net.ipaddress.hosttonetworkorder.aspx" rel="nofollow">IPAddress.HostToNetworkOrder</a> and <a href="http://msdn.microsoft.com/en-us/library/system.net.ipaddress.networktohostorder.aspx" rel="nofollow">IPAddress.NetworkToHostOrder</a>. Why these methods were not part of the BitConverter class and in the obvious place people will look we'll never know.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/1335024#1335024 2 Answer by skevar7 for Hidden .NET Base Class Library Classes? skevar7 2009-08-26T14:15:58Z 2009-08-26T14:15:58Z <p>[System.Diagnostics.ConditionalAttribute] - can be used instead of ugly preprocessor directives. For instance:</p> <pre><code>[Conditional("DEBUG")] public void Validate() { // ... } </code></pre> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/1461967#1461967 0 Answer by csharptest.net for Hidden .NET Base Class Library Classes? csharptest.net 2009-09-22T18:59:09Z 2009-09-22T18:59:09Z <p>I have to add <a href="http://msdn.microsoft.com/en-us/library/system.exception.getbaseexception.aspx" rel="nofollow">Exception.GetBaseException()</a>. I can't know how many times I've this code instead:</p> <pre><code>while(e.InnerException != null) e = e.InnerException; return e.Message; </code></pre> <p>instead of just:</p> <pre><code>return e.GetBaseException().Message; </code></pre> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/1462906#1462906 1 Answer by George Mauer for Hidden .NET Base Class Library Classes? George Mauer 2009-09-22T22:13:45Z 2009-09-29T16:49:15Z <p>The Action lambda is a delegate and hence gets the same delegate goodies that regular ones do - such as BeginInvoke():</p> <pre><code>new Action(() =&gt; MethodIWantToRunAsychronously()) .BeginInvoke(new AsyncCallback(x =&gt; ThingToDoWhenMethodReturns()), null); </code></pre> <p><strong>What it does:</strong> Spawns a new thread and runs MethodIWantToRunAsychronously() on it while your continuing to execute the current method on the current thread. When MethodIWantToRunAsychronously completes, ThingToDoWhenMethodReturns() is called (still) on the new thread.</p>