Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

front: la coloration syntaxique pour csharp (.cs) ne fonctionne pas #171

Open
x0rld opened this issue Oct 24, 2023 · 0 comments
Open

front: la coloration syntaxique pour csharp (.cs) ne fonctionne pas #171

x0rld opened this issue Oct 24, 2023 · 0 comments
Labels
bug Quelque chose ne fonctionne pas

Comments

@x0rld
Copy link

x0rld commented Oct 24, 2023

j'ai testé avec ce morceau de code il n'y a aucun coloration
et quand je change par cpp par exemple j'ai bien de la coloration
l'exemple sur lequel je m'en suis rendu compte
https://bin.readthedocs.fr/sterse.cs

using System.Runtime.CompilerServices;

class SomeViewModel
{
    public bool HasPendingChanges { get; private set; }

    public int Foo { get; set => Set(ref field, value); } = 1;

    private bool Set<T>(ref T location, T value)
    {
        if (RuntimeHelpers.Equals(location, value)) return false;
        location = value;
        HasPendingChanges = true;
        return true;
    }
}
@Julien00859 Julien00859 added the bug Quelque chose ne fonctionne pas label Oct 25, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Quelque chose ne fonctionne pas
Projects
None yet
Development

No branches or pull requests

2 participants