Horje
Custom Encrypted String Type Code Example
Custom Encrypted String Type
public class EncryptedString
{
    private readonly string _value;

    public EncryptedString(string value)
    {
        _value = value;
    }

    public static implicit operator string(EncryptedString s)
    {
        return s._value;
    }

    public static implicit operator EncryptedString(string value)
    {
        if (value == null)
            return null;

        return new EncryptedString(value);
    }
}




Csharp

Related
radians to degrees Code Example radians to degrees Code Example
list with search bar uwp c# Code Example list with search bar uwp c# Code Example
string in char list f# Code Example string in char list f# Code Example
C# Calculate MD5 Checksum For A File Code Example C# Calculate MD5 Checksum For A File Code Example
monogame button Code Example monogame button Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11