Skip to content
View mbsoftlab's full-sized avatar
  • Germany

Block or report mbsoftlab

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. MbSoftLab.StringEnums MbSoftLab.StringEnums Public

    MbSoftLab.StringEnums can help you to decorate Enums with custom Strings

    C# 1

  2. MbSoftLab.TemplateEngine.Core MbSoftLab.TemplateEngine.Core Public

    String TemplateEngine for .netCore

    C# 1

  3. Blazor EuroCurrencyLabel Blazor EuroCurrencyLabel
    1
    @code {
    2
        [Parameter] public double Price { get; set; }
    3
        [Parameter] public string ToolTip { get; set; }
    4
        [Parameter] public int DecimalPlaces { get; set; } = 2;
    5
    }
  4. Blazor TimeSpanLabel Blazor TimeSpanLabel
    1
    @code {
    2
        [Parameter] public System.TimeSpan Value { get; set; }
    3
    }
    4
    
                  
    5
    <span>
  5. EmbeddedResourceReader EmbeddedResourceReader
    1
    using System.Reflection;
    2
    
                  
    3
    internal static class EmbeddedResourceReader
    4
    {
    5
        public static string ReadResource(string resourceName)
  6. Extension Methods for formating numb... Extension Methods for formating numbers as String in C# with german culture
    1
    namespace MarketAnalyzer.Blazor.Components
    2
    {
    3
        public static class NumberStringFormatExtensions
    4
        {
    5
            public static string ToEuroCurrency(this double currencyValue, int decimalPlaces=-1)