Skip to content

Instantly share code, notes, and snippets.

public abstract class EntityBase
{
/// <summary>
/// Will be automatically filled
/// </summary>
public Guid Id { get; set; }
public override bool Equals(object obj)
{
.... code goes here..
// copy pasted
x.a = 5;
x.b = 6;
x.c = 7;
var first = calc(x);
x.a = 7;
x.c = 11;
var second = calc(x);
"configurations": {
.....
"hmr": {
"hmr": true,
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.hmr.ts"
}
]