j'ai décompilé une app .exe mais quand je veut la compiler je trouve cette erreur :
Code x : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4 Gravité Code Description Projet Fichier Ligne État de la suppression Erreur CS1001 Identificateur attendu MOESC C:\Users\Administrateur.NOTORIETY-GROUP.000\Documents\moesc3\MOESC\DotfuscatorAttribute.cs 21 N/A Erreur CS1002 ; attendu MOESC C:\Users\Administrateur.NOTORIETY-GROUP.000\Documents\moesc3\MOESC\DotfuscatorAttribute.cs 21 N/A Erreur CS1056 Caractère inattendu '\u002E' MOESC C:\Users\Administrateur.NOTORIETY-GROUP.000\Documents\moesc3\MOESC\DotfuscatorAttribute.cs 21 N/A
et quand je clique sur l'erreur je trouve le code suivant :
des solutions ??
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27 using System; using System.Runtime.InteropServices; [AttributeUsage(AttributeTargets.Assembly)] [ComVisible(false)] public sealed class DotfuscatorAttribute : Attribute { private string a; private int c; public DotfuscatorAttribute(string a, int c) { DotfuscatorAttribute dotfuscatorAttribute = this; // ISSUE: explicit constructor call dotfuscatorAttribute.\u002Ector(); dotfuscatorAttribute.a = a; this.c = c; } public string A => this.a; public string a() => this.a; public int C => this.c; public int c() => this.c; }






Répondre avec citation



Partager