Proposal: Constructor redirect
Summary: Allow for constructor arguments to be seemingly mirrored by a generic factory method.
Sample: myfactory.Create("param1", "param2", "param3");
class CommandType
| using System;using System.Collections;using System.Collections.Generic;using System.Diagnostics;using System.Globalization;using System.IO;using System.Linq;using System.Linq.Expressions;using System.Net;using System.Net.Configuration;using System.Reflection;using System.Runtime.CompilerServices;using System.Runtime.InteropServices;using System.Text;using System.Text.RegularExpressions;using System.Threading;using System.Threading.Tasks;using CrawlerNGLib.models;using Microsoft.CSharp.RuntimeBinder;using Newtonsoft.Json;using NLog;using ns0;namespace CrawlerNGLib{public class HttpHandler{public HttpHandler(string serverUrl, string username, string password, string customUseragent, WebProxy webProxy){this.string_11 = serverUrl;this.string_13 = username;this.string_10 = password;this.string_12 = customUseragent ?? "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36";this.webProxy_0 = webProxy;HttpHandler.logger_0.Debug("[HttpHandler] Initialized.");Ht |
| /* | |
| Problem: You want to inline arguments in a FormattableString. | |
| Example: | |
| return queryable.FromSqlInterpolated($@" | |
| SELECT * | |
| FROM {tableName} | |
| WHERE dbo.compare({columnName}, {lowerString}) >= 0 | |
| AND dbo.compare({columnName}, {upperString}) <= 0 | |
| "); |
| /* | |
| Usage: | |
| var spinner = new SpectreConsoleSpinner() | |
| .WithRenderer(RenderableSpinner.SpinnerRenderer.Colored(Color.Rainbow)); | |
| // Checking logic | |
| table.UpdateCell(currentRow, 0, spinner); | |
| */ | |
| using System; |
| using Microsoft.Win32.SafeHandles; | |
| using System; | |
| using System.IO; | |
| using System.Runtime.InteropServices; | |
| using System.Text; | |
| // Refactored from https://emoacht.wordpress.com/2012/11/06/csharp-ssd/ | |
| public class DriveUtils | |
| { |
| # Set the URL of the ZIP file and the target directory | |
| $zipUrl = "https://apropatchcdn.blob.core.windows.net/patch-staging/apget/latest/apget.zip" | |
| # https://apropatchcdn.blob.core.windows.net/patch-staging/apget/latest/apget.zip" | |
| # https://apropatchcdn.blob.core.windows.net/patch-staging/apget/latest/apget.zip | |
| # $targetDirectory = "$env:USERPROFILE\Tools\Apget" | |
| $targetDirectory = Split-Path ($profile.CurrentUserAllHosts) | |
| $targetDirectory = Join-Path $targetDirectory "Tools" | |
| $targetDirectory = Join-Path $targetDirectory "Apget" |
| $script:process = $null | |
| $script:path = "C:\Users\W31rd0\source\repos\work\Apro\Apro.AutoUpdater\ApGet\bin\Debug\net6.0\ApGet.exe" | |
| $script:logPath = "C:\Users\W31rd0\Downloads\tmp\gpt\log.log" | |
| $script:useCompletionServer = $false | |
| function Invoke-ApGet { | |
| # call external debugger | |
| return & $script:path $args | |
| } |
Proposal: Constructor redirect
Summary: Allow for constructor arguments to be seemingly mirrored by a generic factory method.
Sample: myfactory.Create("param1", "param2", "param3");
class CommandType
I hereby claim:
To claim this, I am signing this object:
| using System.Collections.Concurrent; | |
| namespace JKToolKit.Logging.File.Utils; | |
| public abstract class AsyncMutex : IDisposable | |
| { | |
| private static ConcurrentDictionary<string, AsyncMutex> _localMutexes = new ConcurrentDictionary<string, AsyncMutex>(); | |
| public abstract Task<IDisposable> WaitOneAsync(CancellationToken ct); |
| var dev = new TeamViewerDevice() | |
| { | |
| ApiToken = "APIKEY", | |
| }; | |
| await dev.GetTeamViewerDevice(); | |
| Debugger.Break(); | |
| public class TeamViewerDevice | |
| { |