示例#1
0
 public Shadow(Shadow other) : this((float)other?.BlurRadius, other.Offset, other.Color, other.Extents)
 {
 }
示例#2
0
文件: Shadow.cs 项目: yunmiha/TizenFX
 public Shadow(Shadow other) : this(other == null ? throw new ArgumentNullException(nameof(other)) : other.BlurRadius, other.Color, other.Offset, other.Extents)
 {
 }