7 lines
253 B
C#
7 lines
253 B
C#
using System;
|
|
using CycloneDX.Models;
|
|
|
|
var dependenciesProperty = typeof(Dependency).GetProperty("Dependencies")!;
|
|
Console.WriteLine(dependenciesProperty.PropertyType);
|
|
Console.WriteLine(dependenciesProperty.PropertyType.GenericTypeArguments[0]);
|