* Added new endpoint for updating password * Added internationalization method to ContextManager and Context * Updated contexts to use internationalization * Added a fancy text-based UI to the server * Added translations * Moved Promise class to its own file * Made BankNetInteractor its own file * Added a lot of convenient methods * Added many more comments * Fixed input event management in ButtonView * Added support for dynamic ListView content modification * Added more layouts * Fixed some namespaces * Added more commands to the server
20 lines
491 B
C#
20 lines
491 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Common
|
|
{
|
|
// Enables mutability for immutable values or parameters
|
|
public sealed class Proxy<T>
|
|
{
|
|
public T Value { get; set; }
|
|
|
|
public Proxy(T initial = default(T)) => Value = initial;
|
|
|
|
public static implicit operator T(Proxy<T> p) => p.Value;
|
|
public static implicit operator Proxy<T>(T t) => new Proxy<T>(t);
|
|
}
|
|
}
|