This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BINDER_DEBUG_LOG | |
BUILDTYPE_RET | |
DEBUGGING_SUPPORTED | |
ENABLE_DOWNLEVEL_FOR_NLS | |
EnC_SUPPORTED | |
FEATURE_CAS_POLICY | |
FEATURE_CLASSIC_COMINTEROP | |
FEATURE_CLICKONCE | |
FEATURE_COLLECTIBLE_TYPES | |
FEATURE_COMINTEROP_REGISTRATION |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Text; | |
using System.Text.RegularExpressions; | |
using System.Threading.Tasks; | |
using System.Xml.Linq; | |
namespace FindDeadResources |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Linq; | |
using System.Runtime.InteropServices; | |
namespace _1 | |
{ | |
class Program | |
{ | |
[DllImport("shell32.dll", SetLastError = false, BestFitMapping = false, ExactSpelling = true)] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
C:\git\coreclr\bin\Product\Windows_NT.x64.Debug\System.Private.CoreLib.dll | |
[2 C:\bak\System.Private.CoreLib.dll 2] | |
namespace { | |
} | |
namespace Microsoft.Win32 { | |
internal static class OAVariantLib { | |
internal static readonly Type[] ClassTypes; | |
private static void .cctor(); | |
internal static Variant ChangeType(Variant source, Type targetClass, short options, CultureInfo culture); | |
private static void ChangeTypeEx(ref Variant result, ref Variant source, int lcid, IntPtr typeHandle, int cvType, short flags); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using BenchmarkDotNet.Attributes; | |
using BenchmarkDotNet.Running; | |
using System; | |
using System.Text; | |
namespace ConsoleApplication1 | |
{ | |
public class Program | |
{ | |
private StringBuilder sb = new StringBuilder(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using BenchmarkDotNet.Attributes; | |
using BenchmarkDotNet.Running; | |
using System; | |
using System.Text; | |
namespace ConsoleApplication1 | |
{ | |
public class Program | |
{ | |
private StringBuilder sb = new StringBuilder(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Microsoft.VisualBasic { | |
public enum AppWinStyle : short { | |
Hide = (short)0, | |
MaximizedFocus = (short)3, | |
MinimizedFocus = (short)2, | |
MinimizedNoFocus = (short)6, | |
NormalFocus = (short)1, | |
NormalNoFocus = (short)4, | |
} | |
public enum AudioPlayMode { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
---C:\Windows\Microsoft.NET\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll | |
+++C:\git\corefx\bin\AnyOS.AnyCPU.Debug\Microsoft.VisualBasic\netstandard\Microsoft.VisualBasic.dll | |
namespace Microsoft.VisualBasic { | |
- public enum AppWinStyle : short { | |
- Hide = (short)0, | |
- MaximizedFocus = (short)3, | |
- MinimizedFocus = (short)2, | |
- MinimizedNoFocus = (short)6, | |
- NormalFocus = (short)1, | |
- NormalNoFocus = (short)4, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Lines not containing 'class' | |
^(?:(?!class)[\s\S])*$ | |
^((?!class)[\s\S])*$ | |
^(?!.*class).*$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Microsoft.VisualBasic | |
{ | |
public enum AppWinStyle : short | |
{ | |
Hide = (short)0, | |
MaximizedFocus = (short)3, | |
MinimizedFocus = (short)2, | |
MinimizedNoFocus = (short)6, | |
NormalFocus = (short)1, | |
NormalNoFocus = (short)4, |
OlderNewer