IL.View.Controls.CodeView.Scope.Scope C# (CSharp) Méthode

Scope() public méthode

public Scope ( string name, int index, int length ) : System
name string
index int
length int
Résultat System
    public Scope(string name, int index, int length)
    {
      Guard.ArgNotNullAndNotEmpty(name, "name");

      Name = name;
      Index = index;
      Length = length;
      Children = new List<Scope>();
    }