コード例 #1
0
ファイル: Point3LConverter.cs プロジェクト: 15831944/WW
 public override object ConvertFrom(
     ITypeDescriptorContext context,
     CultureInfo culture,
     object value)
 {
     if (value.GetType() == typeof(string))
     {
         return((object)Point3L.Parse((string)value));
     }
     return(base.ConvertFrom(context, culture, value));
 }
コード例 #2
0
 public Vector3L(Point3L from)
 {
     this.X = from.X;
     this.Y = from.Y;
     this.Z = from.Z;
 }