- Start Menu - Disable Search Suggestions from the Web
- Context Menu
- Orginal (expanded) Context Menu
- Restoring Simplified Menu
- Recycle Bin - Remove "Pin to Quick Access"
This file contains hidden or 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
| ;SMBDIS.ASM - A COMPREHENSIVE SUPER MARIO BROS. DISASSEMBLY | |
| ;by doppelganger (doppelheathen@gmail.com) | |
| ;This file is provided for your own use as-is. It will require the character rom data | |
| ;and an iNES file header to get it to work. | |
| ;There are so many people I have to thank for this, that taking all the credit for | |
| ;myself would be an unforgivable act of arrogance. Without their help this would | |
| ;probably not be possible. So I thank all the peeps in the nesdev scene whose insight into | |
| ;the 6502 and the NES helped me learn how it works (you guys know who you are, there's no |
This file contains hidden or 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
| --- | |
| BasedOnStyle: Microsoft | |
| AlignAfterOpenBracket: Align | |
| AlignEscapedNewlines: DontAlign | |
| AlignOperands: 'true' | |
| AlignTrailingComments: 'true' | |
| BreakBeforeBraces: Allman | |
| IncludeBlocks: Merge | |
| IndentCaseLabels: 'true' | |
| IndentWidth: '2' |
This file contains hidden or 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 TestApp.Models.Settings; | |
| [System.Diagnostics.CodeAnalysis.SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1649:File name should match first type name", Justification = "This is small utility.")] | |
| public static class Key | |
| { | |
| public const string AutoStartApp = "AutoStartApp"; | |
| public const string Ping1Enabled = "ping1-enabled"; | |
| public const string Ping1Host = "ping1-host"; | |
| } |
This file contains hidden or 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.ComponentModel; | |
| using System.Globalization; | |
| using System.Reflection; | |
| using Avalonia.Data.Converters; | |
| namespace Diagnostics.Converters; | |
| public class EnumDescriptionConverter : IValueConverter | |
| { |
This file contains hidden or 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
| // The following was tested using RolsynPad 20.0 | |
| using System; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Linq; | |
| // Example usage | |
| var ini = new IniFile(); | |
| ini.Load("config.ini"); |
- dnSpyEx - Unofficial revival of the well known .NET debugger and assembly editor, dnSpy
- CodemerxDecompile - .NET multi-platform decompiler (original makers of JustDecompile)
- de4dot - .NET deobfuscator and unpacker. (archived 2020)
- ILSpy - .NET Decompiler with support for PDB generation, ReadyToRun, Metadata - cross-platform!
- Iced - Blazing fast and correct x86/x64 disassembler, assembler, decoder, encoder for Rust, .NET, Java, Python, Lua
This file contains hidden or 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 Microsoft.Maui.Storage; | |
| using System.Security.Cryptography; | |
| using System.Text; | |
| // Based on: https://github.com/soyfrien/ImageCache | |
| namespace MyProjectNamespace; | |
| /// <summary> | |
| /// Use this class to cache images from the Internet. | |
| /// Its functions receive a URI and turn the resource into an ImageSource, byte array, Stream, or Func‹Stream›. |
NewerOlder