Exemplo n.º 1
0
        public override string ToString() =>
        $@"{base.ToString()}: Field Definition(
Name: {NameIdentifier.ToString().Indent()}
Type: {TypeIdentifier.ToString().Indent()}{
    (TypeSymbol != null ? $"\nType Symbol: {TypeSymbol.ToString().Indent()}" : string.Empty)}
Modifier: {Modifier.ToString().Indent()}
IsReadonly: {IsReadonly.ToString().Indent()}
)";
Exemplo n.º 2
0
        public override string ToString() =>
        $@"{base.ToString()}: Method Definition(
Name: {NameIdentifier.ToString().Indent()}
Modifier: {Modifier.ToString().Indent()}
Method: {Method.ToString().Indent()}
)";