コード例 #1
0
 public FeStorage(FeStorage other)
 {
     this.N = new uint[other.N.Length];
     Array.Copy((Array)other.N, (Array)this.N, other.N.Length);
 }
コード例 #2
0
ファイル: FeStorage.cs プロジェクト: miqoas/Miqo.License
 public FeStorage(FeStorage other)
 {
     N = new uint[other.N.Length];
     Array.Copy(other.N, N, other.N.Length);
 }