예제 #1
0
파일: Shadow.cs 프로젝트: lokilee73/TizenFX
 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)
 {
 }