Bonjour,

Voilà mon problème :
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
 
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace ConsoleApplication1
{
    public abstract class EntityMember<T>
    {
        public T Value { get; set; }
    }
 
    public class Int32EntityMember : EntityMember<int?>
    {
    }
 
    public class StringEntityMember : EntityMember<string>
    {
    }
 
    public class GuidEntityMember : EntityMember<Guid?>
    {
    }
 
        public class Entity 
        {
 
            public GuidEntityMember ApplicationId { get; private set; }
 
            public Int32EntityMember ConnectedCount { get; private set; }
 
            public GuidEntityMember MainApplicationId { get; private set; }
 
            public Int32EntityMember ProcessId { get; private set; }
 
            public StringEntityMember ProcessName { get; private set; }
        }
 
 
    class Program
    {
        static void Main(string[] args)
        {
            Entity entity2 = new Entity();
            Guid empty = Guid.NewGuid();
            Guid applicationId = Guid.NewGuid();
            int Id = 10;
            string name = "koko";
 
            entity2.MainApplicationId.Value = new Guid?(empty);
            entity2.ApplicationId.Value = new Guid?(applicationId);
            entity2.ProcessId.Value = new int?(Id);
            entity2.ProcessName.Value = name;
            entity2.ConnectedCount.Value = 1;
        }
    }
}

l'application ce bloque totalement a la ligne
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
 
entity2.MainApplicationId.Value = new Guid?(empty);
pourquoi????

Merci