Bonjour,
Mon problème tient dans le titre. J'ai des erreurs de compilation avec certaines classes issu d'un projet web que l'on m'a demandé de faire fonctionner.
Voici le morceau de code qui bloque:
On retrouve en effet public class SP_SEL_ACT_IAF_ACTRow : DataRow dans deux fichiers différent mais je ne peux pas faire autrement (on m'a dit de laisser le code tel quel..
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
28
29 [System.Diagnostics.DebuggerStepThrough()] public class SP_SEL_ACT_IAF_ACTRow : DataRow { private SP_SEL_ACT_IAF_ACTDataTable tableSP_SEL_ACT_IAF_ACT; internal SP_SEL_ACT_IAF_ACTRow(DataRowBuilder rb) : base(rb) { this.tableSP_SEL_ACT_IAF_ACT = ((SP_SEL_ACT_IAF_ACTDataTable)(this.Table)); } public int IFE_ID { get { return ((int)(this[this.tableSP_SEL_ACT_IAF_ACT.IFE_IDColumn])); } set { this[this.tableSP_SEL_ACT_IAF_ACT.IFE_IDColumn] = value; } } public int COL_ID { get { return ((int)(this[this.tableSP_SEL_ACT_IAF_ACT.COL_IDColumn])); } set { this[this.tableSP_SEL_ACT_IAF_ACT.COL_IDColumn] = value; } } etc...).
PS: nul en C# derrière l'écran![]()
Partager