Skip to content

Instantly share code, notes, and snippets.

View Bomret's full-sized avatar

Stefan Reichel Bomret

View GitHub Profile
namespace _;
public class Parameter<T> : IParameter
{
private string? stringValue;
private T value;
public bool IsValid { get; private set; }
public static bool TryParse(string value, out Parameter<T> result)
{