c# Programming Glossary: ilspy
Why is String.IsNullOrEmpty faster than String.Length? http://stackoverflow.com/questions/10360370/why-is-string-isnullorempty-faster-than-string-length is String.IsNullOrEmpty faster than String.Length ILSpy shows that String.IsNullOrEmpty is implemented in terms of String.Length..
WinForms: Maximum Size of a Control is 65535 - Workaround? http://stackoverflow.com/questions/11499368/winforms-maximum-size-of-a-control-is-65535-workaround to 65535. Digging through the source of Control.Size with ILSpy I couldn't immediately find the code responsible for clamping..
Generate tail call opcode http://stackoverflow.com/questions/15864670/generate-tail-call-opcode windows assemblies list to get it and load it back up in ILSpy but it looks the same to me .method public hidebysig static.. acc L_000e starg.s i L_0010 br.s L_0000 Which according to ILSpy is equivalent to this Microsoft.FSharp.Core.CompilationArgumentCounts..
Single-assembly multi-language Windows Forms deployment (ILMerge and satellite assemblies / localization) - possible? http://stackoverflow.com/questions/1952638/single-assembly-multi-language-windows-forms-deployment-ilmerge-and-satellite-a resources in the merged assemby when I use Reflector or ILSpy . But copying the main assembly into culture specific subfolders.. sets of resources in the merged assembly observed with ILSpy decompiler InputProg.resources InputProg.es.resources InputProg.es.resources..
Get types used inside a C# method body http://stackoverflow.com/questions/5667816/get-types-used-inside-a-c-sharp-method-body suitable. Perhaps look at the open source project ILSpy and see whether you can leverage any of their work. share improve..
Is the size of a Form in Visual Studio designer limited to screen resolution? http://stackoverflow.com/questions/6651115/is-the-size-of-a-form-in-visual-studio-designer-limited-to-screen-resolution the check is hardcoded in Forms.SetBoundsCore like using ILSpy as a decompiler if this.WindowState FormWindowState.Normal base.Height..
When to dispose CancellationTokenSource? http://stackoverflow.com/questions/6960520/when-to-dispose-cancellationtokensource share improve this question I took a look in ILSpy for the CancellationTokenSource but I can only find m_KernelEvent..
LINQ: Not Any vs All Don't http://stackoverflow.com/questions/9027530/linq-not-any-vs-all-dont improve this question Implementation of All according to ILSpy as in I actually went and looked rather than the well that method.. false return true Implementation of Any according to ILSpy public static bool Any TSource this IEnumerable TSource source..
|