I hereby claim:
- I am daveaglick on github.
- I am daveaglick (https://keybase.io/daveaglick) on keybase.
- I have a public key whose fingerprint is 20E2 FB65 377E D104 FD1C CE61 E0DE 5630 92FE 2979
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
using System; | |
public class Program | |
{ | |
public void Main() | |
{ | |
Foo foo = new Foo(); | |
// Update with method chaining | |
// and self assignment, |
// Set app.config - http://stackoverflow.com/a/6151688/807064 | |
AppDomain.CurrentDomain.SetData("APP_CONFIG_FILE", @"C:\new.config"); | |
typeof(ConfigurationManager) | |
.GetField("s_initState", BindingFlags.NonPublic | BindingFlags.Static) | |
.SetValue(null, 0); | |
typeof(ConfigurationManager) | |
.GetField("s_configSystem", BindingFlags.NonPublic | BindingFlags.Static) | |
.SetValue(null, null); | |
typeof(ConfigurationManager).Assembly.GetTypes() | |
.Where(x => x.FullName == "System.Configuration.ClientConfigPaths") |
<?xml version="1.0" encoding="UTF-8"?> | |
<opml version="1.0"> | |
<head> | |
<title>Dave subscriptions in feedly Cloud</title> | |
</head> | |
<body> | |
<outline text="Development" title="Development"> | |
<outline type="rss" text="Scott Hanselman" title="Scott Hanselman" xmlUrl="http://feeds.feedburner.com/ScottHanselman" htmlUrl="https://www.hanselman.com/blog/"/> | |
<outline type="rss" text="Cetus" title="Cetus" xmlUrl="https://feeds.feedburner.com/cetus/fVRw" htmlUrl="https://cetus.io/"/> |
Hello from the Statiq docs! |
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System.Collections.Immutable; | |
using System.Linq; | |
using System.Runtime.CompilerServices; | |
using System.Threading; | |
using System.Threading.Tasks; | |
namespace DocumentQuery |
Thank you for your interest in contributing to Statiq ("We" or "Us").
The purpose of this contributor agreement ("Agreement") is to clarify and document the rights granted by contributors to Us.
If You are an employee and have created the Contribution as part of your employment, You need to have Your employer approve this Agreement. If You do not own the Copyright in the entire work of authorship, any other author of the Contribution should also sign this – in any event, please contact Us at [email protected].
public class ChangeLevelLoggerProvider : InterceptingLoggerProvider | |
{ | |
private readonly Func<LogLevel, LogLevel> _changeLevel; | |
public ChangeLevelLoggerProvider(ILoggerProvider provider, Func<LogLevel, LogLevel> changeLevel) | |
: base(provider) | |
{ | |
_changeLevel = changeLevel ?? throw new ArgumentNullException(nameof(changeLevel)); | |
} |
public class StringStream : Stream | |
{ | |
private const int DefaultBufferCharCount = 256; // The number of characters to buffer at a time | |
private readonly Encoding _encoding; | |
private readonly int _bufferCharCount; | |
private Memory<byte> _outputBuffer; | |
private Encoder _encoder; | |
private ReadOnlyMemory<char> _pendingSource; | |
private Memory<byte> _pendingOutput; |