Chris Collins

Results 1 comments of Chris Collins

here is a sample: ` private static SKColor GetColor(string colorName) { var skColor = typeof(SKColors).GetField(colorName); if (skColor != null) { return (SKColor)skColor.GetValue(null)!; } return SKColors.Black; }`