-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathComplex.xml
7490 lines (7045 loc) · 481 KB
/
Complex.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<Type Name="Complex" FullName="System.Numerics.Complex">
<TypeSignature Language="C#" Value="public struct Complex : IEquatable<System.Numerics.Complex>, IFormattable" FrameworkAlternate="dotnet-uwp-10.0;net-5.0;netcore-1.0;netcore-1.1;netcore-2.0;netcore-2.1;netcore-2.2;netcore-3.0;netcore-3.1;netframework-4.0;netframework-4.5;netframework-4.5.1;netframework-4.5.2;netframework-4.6;netframework-4.6.1;netframework-4.6.2;netframework-4.7;netframework-4.7.1;netframework-4.7.2;netframework-4.8;netframework-4.8.1;netstandard-1.1;netstandard-1.2;netstandard-1.3;netstandard-1.4;netstandard-1.6;netstandard-2.0;netstandard-2.1" />
<TypeSignature Language="ILAsm" Value=".class public sequential ansi sealed beforefieldinit Complex extends System.ValueType implements class System.IEquatable`1<valuetype System.Numerics.Complex>, class System.IFormattable" FrameworkAlternate="dotnet-uwp-10.0;net-5.0;net-6.0;netcore-1.0;netcore-1.1;netcore-2.0;netcore-2.1;netcore-2.2;netcore-3.0;netcore-3.1;netstandard-1.1;netstandard-1.2;netstandard-1.3;netstandard-1.4;netstandard-1.6;netstandard-2.0;netstandard-2.1" />
<TypeSignature Language="DocId" Value="T:System.Numerics.Complex" />
<TypeSignature Language="VB.NET" Value="Public Structure Complex
Implements IEquatable(Of Complex), IFormattable" FrameworkAlternate="dotnet-uwp-10.0;net-5.0;net-6.0;netcore-1.0;netcore-1.1;netcore-2.0;netcore-2.1;netcore-2.2;netcore-3.0;netcore-3.1;netframework-4.0;netframework-4.5;netframework-4.5.1;netframework-4.5.2;netframework-4.6;netframework-4.6.1;netframework-4.6.2;netframework-4.7;netframework-4.7.1;netframework-4.7.2;netframework-4.8;netframework-4.8.1;netstandard-1.1;netstandard-1.2;netstandard-1.3;netstandard-1.4;netstandard-1.6;netstandard-2.0;netstandard-2.1" />
<TypeSignature Language="F#" Value="type Complex = struct
 interface IFormattable" FrameworkAlternate="dotnet-uwp-10.0;net-5.0;net-6.0;netcore-1.0;netcore-1.1;netcore-2.0;netcore-2.1;netcore-2.2;netcore-3.0;netcore-3.1;netframework-4.0;netframework-4.5;netframework-4.5.1;netframework-4.5.2;netframework-4.6;netframework-4.6.1;netframework-4.6.2;netframework-4.7;netframework-4.7.1;netframework-4.7.2;netframework-4.8;netframework-4.8.1;netstandard-1.1;netstandard-1.2;netstandard-1.3;netstandard-1.4;netstandard-1.6;netstandard-2.0;netstandard-2.1" />
<TypeSignature Language="C++ CLI" Value="public value class Complex : IEquatable<System::Numerics::Complex>, IFormattable" FrameworkAlternate="dotnet-uwp-10.0;net-5.0;net-6.0;netcore-1.0;netcore-1.1;netcore-2.0;netcore-2.1;netcore-2.2;netcore-3.0;netcore-3.1;netframework-4.0;netframework-4.5;netframework-4.5.1;netframework-4.5.2;netframework-4.6;netframework-4.6.1;netframework-4.6.2;netframework-4.7;netframework-4.7.1;netframework-4.7.2;netframework-4.8;netframework-4.8.1;netstandard-1.1;netstandard-1.2;netstandard-1.3;netstandard-1.4;netstandard-1.6;netstandard-2.0;netstandard-2.1" />
<TypeSignature Language="C#" Value="public readonly struct Complex : IEquatable<System.Numerics.Complex>, IParsable<System.Numerics.Complex>, ISpanParsable<System.Numerics.Complex>, IUtf8SpanParsable<System.Numerics.Complex>, System.Numerics.IAdditionOperators<System.Numerics.Complex,System.Numerics.Complex,System.Numerics.Complex>, System.Numerics.IAdditiveIdentity<System.Numerics.Complex,System.Numerics.Complex>, System.Numerics.IDecrementOperators<System.Numerics.Complex>, System.Numerics.IDivisionOperators<System.Numerics.Complex,System.Numerics.Complex,System.Numerics.Complex>, System.Numerics.IEqualityOperators<System.Numerics.Complex,System.Numerics.Complex,bool>, System.Numerics.IIncrementOperators<System.Numerics.Complex>, System.Numerics.IMultiplicativeIdentity<System.Numerics.Complex,System.Numerics.Complex>, System.Numerics.IMultiplyOperators<System.Numerics.Complex,System.Numerics.Complex,System.Numerics.Complex>, System.Numerics.INumberBase<System.Numerics.Complex>, System.Numerics.ISignedNumber<System.Numerics.Complex>, System.Numerics.ISubtractionOperators<System.Numerics.Complex,System.Numerics.Complex,System.Numerics.Complex>, System.Numerics.IUnaryNegationOperators<System.Numerics.Complex,System.Numerics.Complex>, System.Numerics.IUnaryPlusOperators<System.Numerics.Complex,System.Numerics.Complex>" FrameworkAlternate="net-10.0;net-8.0;net-9.0" />
<TypeSignature Language="ILAsm" Value=".class public sequential ansi sealed beforefieldinit Complex extends System.ValueType implements class System.IEquatable`1<valuetype System.Numerics.Complex>, class System.IFormattable, class System.IParsable`1<valuetype System.Numerics.Complex>, class System.ISpanFormattable, class System.ISpanParsable`1<valuetype System.Numerics.Complex>, class System.IUtf8SpanFormattable, class System.IUtf8SpanParsable`1<valuetype System.Numerics.Complex>, class System.Numerics.IAdditionOperators`3<valuetype System.Numerics.Complex, valuetype System.Numerics.Complex, valuetype System.Numerics.Complex>, class System.Numerics.IAdditiveIdentity`2<valuetype System.Numerics.Complex, valuetype System.Numerics.Complex>, class System.Numerics.IDecrementOperators`1<valuetype System.Numerics.Complex>, class System.Numerics.IDivisionOperators`3<valuetype System.Numerics.Complex, valuetype System.Numerics.Complex, valuetype System.Numerics.Complex>, class System.Numerics.IEqualityOperators`3<valuetype System.Numerics.Complex, valuetype System.Numerics.Complex, bool>, class System.Numerics.IIncrementOperators`1<valuetype System.Numerics.Complex>, class System.Numerics.IMultiplicativeIdentity`2<valuetype System.Numerics.Complex, valuetype System.Numerics.Complex>, class System.Numerics.IMultiplyOperators`3<valuetype System.Numerics.Complex, valuetype System.Numerics.Complex, valuetype System.Numerics.Complex>, class System.Numerics.INumberBase`1<valuetype System.Numerics.Complex>, class System.Numerics.ISignedNumber`1<valuetype System.Numerics.Complex>, class System.Numerics.ISubtractionOperators`3<valuetype System.Numerics.Complex, valuetype System.Numerics.Complex, valuetype System.Numerics.Complex>, class System.Numerics.IUnaryNegationOperators`2<valuetype System.Numerics.Complex, valuetype System.Numerics.Complex>, class System.Numerics.IUnaryPlusOperators`2<valuetype System.Numerics.Complex, valuetype System.Numerics.Complex>" FrameworkAlternate="net-10.0;net-8.0;net-9.0" />
<TypeSignature Language="VB.NET" Value="Public Structure Complex
Implements IAdditionOperators(Of Complex, Complex, Complex), IAdditiveIdentity(Of Complex, Complex), IDecrementOperators(Of Complex), IDivisionOperators(Of Complex, Complex, Complex), IEqualityOperators(Of Complex, Complex, Boolean), IEquatable(Of Complex), IIncrementOperators(Of Complex), IMultiplicativeIdentity(Of Complex, Complex), IMultiplyOperators(Of Complex, Complex, Complex), INumberBase(Of Complex), IParsable(Of Complex), ISignedNumber(Of Complex), ISpanParsable(Of Complex), ISubtractionOperators(Of Complex, Complex, Complex), IUnaryNegationOperators(Of Complex, Complex), IUnaryPlusOperators(Of Complex, Complex), IUtf8SpanParsable(Of Complex)" FrameworkAlternate="net-10.0;net-8.0;net-9.0" />
<TypeSignature Language="F#" Value="type Complex = struct
 interface IFormattable
 interface IParsable<Complex>
 interface ISpanFormattable
 interface ISpanParsable<Complex>
 interface IAdditionOperators<Complex, Complex, Complex>
 interface IAdditiveIdentity<Complex, Complex>
 interface IDecrementOperators<Complex>
 interface IDivisionOperators<Complex, Complex, Complex>
 interface IEqualityOperators<Complex, Complex, bool>
 interface IIncrementOperators<Complex>
 interface IMultiplicativeIdentity<Complex, Complex>
 interface IMultiplyOperators<Complex, Complex, Complex>
 interface INumberBase<Complex>
 interface IUtf8SpanFormattable
 interface IUtf8SpanParsable<Complex>
 interface ISubtractionOperators<Complex, Complex, Complex>
 interface IUnaryNegationOperators<Complex, Complex>
 interface IUnaryPlusOperators<Complex, Complex>
 interface ISignedNumber<Complex>" FrameworkAlternate="net-10.0;net-9.0" />
<TypeSignature Language="C++ CLI" Value="public value class Complex : IEquatable<System::Numerics::Complex>, IParsable<System::Numerics::Complex>, ISpanParsable<System::Numerics::Complex>, IUtf8SpanParsable<System::Numerics::Complex>, System::Numerics::IAdditionOperators<System::Numerics::Complex, System::Numerics::Complex, System::Numerics::Complex>, System::Numerics::IAdditiveIdentity<System::Numerics::Complex, System::Numerics::Complex>, System::Numerics::IDecrementOperators<System::Numerics::Complex>, System::Numerics::IDivisionOperators<System::Numerics::Complex, System::Numerics::Complex, System::Numerics::Complex>, System::Numerics::IEqualityOperators<System::Numerics::Complex, System::Numerics::Complex, bool>, System::Numerics::IIncrementOperators<System::Numerics::Complex>, System::Numerics::IMultiplicativeIdentity<System::Numerics::Complex, System::Numerics::Complex>, System::Numerics::IMultiplyOperators<System::Numerics::Complex, System::Numerics::Complex, System::Numerics::Complex>, System::Numerics::INumberBase<System::Numerics::Complex>, System::Numerics::ISignedNumber<System::Numerics::Complex>, System::Numerics::ISubtractionOperators<System::Numerics::Complex, System::Numerics::Complex, System::Numerics::Complex>, System::Numerics::IUnaryNegationOperators<System::Numerics::Complex, System::Numerics::Complex>, System::Numerics::IUnaryPlusOperators<System::Numerics::Complex, System::Numerics::Complex>" FrameworkAlternate="net-10.0;net-8.0;net-9.0" />
<TypeSignature Language="C#" Value="public readonly struct Complex : IEquatable<System.Numerics.Complex>, IFormattable" FrameworkAlternate="net-6.0" />
<TypeSignature Language="C#" Value="public readonly struct Complex : IEquatable<System.Numerics.Complex>, IParsable<System.Numerics.Complex>, ISpanParsable<System.Numerics.Complex>, System.Numerics.IAdditionOperators<System.Numerics.Complex,System.Numerics.Complex,System.Numerics.Complex>, System.Numerics.IAdditiveIdentity<System.Numerics.Complex,System.Numerics.Complex>, System.Numerics.IDecrementOperators<System.Numerics.Complex>, System.Numerics.IDivisionOperators<System.Numerics.Complex,System.Numerics.Complex,System.Numerics.Complex>, System.Numerics.IEqualityOperators<System.Numerics.Complex,System.Numerics.Complex,bool>, System.Numerics.IIncrementOperators<System.Numerics.Complex>, System.Numerics.IMultiplicativeIdentity<System.Numerics.Complex,System.Numerics.Complex>, System.Numerics.IMultiplyOperators<System.Numerics.Complex,System.Numerics.Complex,System.Numerics.Complex>, System.Numerics.INumberBase<System.Numerics.Complex>, System.Numerics.ISignedNumber<System.Numerics.Complex>, System.Numerics.ISubtractionOperators<System.Numerics.Complex,System.Numerics.Complex,System.Numerics.Complex>, System.Numerics.IUnaryNegationOperators<System.Numerics.Complex,System.Numerics.Complex>, System.Numerics.IUnaryPlusOperators<System.Numerics.Complex,System.Numerics.Complex>" FrameworkAlternate="net-7.0" />
<TypeSignature Language="ILAsm" Value=".class public sequential ansi sealed beforefieldinit Complex extends System.ValueType implements class System.IEquatable`1<valuetype System.Numerics.Complex>, class System.IFormattable, class System.IParsable`1<valuetype System.Numerics.Complex>, class System.ISpanFormattable, class System.ISpanParsable`1<valuetype System.Numerics.Complex>, class System.Numerics.IAdditionOperators`3<valuetype System.Numerics.Complex, valuetype System.Numerics.Complex, valuetype System.Numerics.Complex>, class System.Numerics.IAdditiveIdentity`2<valuetype System.Numerics.Complex, valuetype System.Numerics.Complex>, class System.Numerics.IDecrementOperators`1<valuetype System.Numerics.Complex>, class System.Numerics.IDivisionOperators`3<valuetype System.Numerics.Complex, valuetype System.Numerics.Complex, valuetype System.Numerics.Complex>, class System.Numerics.IEqualityOperators`3<valuetype System.Numerics.Complex, valuetype System.Numerics.Complex, bool>, class System.Numerics.IIncrementOperators`1<valuetype System.Numerics.Complex>, class System.Numerics.IMultiplicativeIdentity`2<valuetype System.Numerics.Complex, valuetype System.Numerics.Complex>, class System.Numerics.IMultiplyOperators`3<valuetype System.Numerics.Complex, valuetype System.Numerics.Complex, valuetype System.Numerics.Complex>, class System.Numerics.INumberBase`1<valuetype System.Numerics.Complex>, class System.Numerics.ISignedNumber`1<valuetype System.Numerics.Complex>, class System.Numerics.ISubtractionOperators`3<valuetype System.Numerics.Complex, valuetype System.Numerics.Complex, valuetype System.Numerics.Complex>, class System.Numerics.IUnaryNegationOperators`2<valuetype System.Numerics.Complex, valuetype System.Numerics.Complex>, class System.Numerics.IUnaryPlusOperators`2<valuetype System.Numerics.Complex, valuetype System.Numerics.Complex>" FrameworkAlternate="net-7.0" />
<TypeSignature Language="VB.NET" Value="Public Structure Complex
Implements IAdditionOperators(Of Complex, Complex, Complex), IAdditiveIdentity(Of Complex, Complex), IDecrementOperators(Of Complex), IDivisionOperators(Of Complex, Complex, Complex), IEqualityOperators(Of Complex, Complex, Boolean), IEquatable(Of Complex), IIncrementOperators(Of Complex), IMultiplicativeIdentity(Of Complex, Complex), IMultiplyOperators(Of Complex, Complex, Complex), INumberBase(Of Complex), IParsable(Of Complex), ISignedNumber(Of Complex), ISpanParsable(Of Complex), ISubtractionOperators(Of Complex, Complex, Complex), IUnaryNegationOperators(Of Complex, Complex), IUnaryPlusOperators(Of Complex, Complex)" FrameworkAlternate="net-7.0" />
<TypeSignature Language="F#" Value="type Complex = struct
 interface IFormattable
 interface IParsable<Complex>
 interface ISpanFormattable
 interface ISpanParsable<Complex>
 interface IAdditionOperators<Complex, Complex, Complex>
 interface IAdditiveIdentity<Complex, Complex>
 interface IDecrementOperators<Complex>
 interface IDivisionOperators<Complex, Complex, Complex>
 interface IEqualityOperators<Complex, Complex, bool>
 interface IIncrementOperators<Complex>
 interface IMultiplicativeIdentity<Complex, Complex>
 interface IMultiplyOperators<Complex, Complex, Complex>
 interface INumberBase<Complex>
 interface ISubtractionOperators<Complex, Complex, Complex>
 interface IUnaryNegationOperators<Complex, Complex>
 interface IUnaryPlusOperators<Complex, Complex>
 interface ISignedNumber<Complex>" FrameworkAlternate="net-7.0" />
<TypeSignature Language="C++ CLI" Value="public value class Complex : IEquatable<System::Numerics::Complex>, IParsable<System::Numerics::Complex>, ISpanParsable<System::Numerics::Complex>, System::Numerics::IAdditionOperators<System::Numerics::Complex, System::Numerics::Complex, System::Numerics::Complex>, System::Numerics::IAdditiveIdentity<System::Numerics::Complex, System::Numerics::Complex>, System::Numerics::IDecrementOperators<System::Numerics::Complex>, System::Numerics::IDivisionOperators<System::Numerics::Complex, System::Numerics::Complex, System::Numerics::Complex>, System::Numerics::IEqualityOperators<System::Numerics::Complex, System::Numerics::Complex, bool>, System::Numerics::IIncrementOperators<System::Numerics::Complex>, System::Numerics::IMultiplicativeIdentity<System::Numerics::Complex, System::Numerics::Complex>, System::Numerics::IMultiplyOperators<System::Numerics::Complex, System::Numerics::Complex, System::Numerics::Complex>, System::Numerics::INumberBase<System::Numerics::Complex>, System::Numerics::ISignedNumber<System::Numerics::Complex>, System::Numerics::ISubtractionOperators<System::Numerics::Complex, System::Numerics::Complex, System::Numerics::Complex>, System::Numerics::IUnaryNegationOperators<System::Numerics::Complex, System::Numerics::Complex>, System::Numerics::IUnaryPlusOperators<System::Numerics::Complex, System::Numerics::Complex>" FrameworkAlternate="net-7.0" />
<TypeSignature Language="F#" Value="type Complex = struct
 interface IFormattable
 interface IParsable<Complex>
 interface ISpanFormattable
 interface ISpanParsable<Complex>
 interface IAdditionOperators<Complex, Complex, Complex>
 interface IAdditiveIdentity<Complex, Complex>
 interface IDecrementOperators<Complex>
 interface IDivisionOperators<Complex, Complex, Complex>
 interface IEqualityOperators<Complex, Complex, bool>
 interface IIncrementOperators<Complex>
 interface IMultiplicativeIdentity<Complex, Complex>
 interface IMultiplyOperators<Complex, Complex, Complex>
 interface INumberBase<Complex>
 interface ISubtractionOperators<Complex, Complex, Complex>
 interface IUnaryNegationOperators<Complex, Complex>
 interface IUnaryPlusOperators<Complex, Complex>
 interface IUtf8SpanFormattable
 interface IUtf8SpanParsable<Complex>
 interface ISignedNumber<Complex>" FrameworkAlternate="net-8.0" />
<TypeSignature Language="ILAsm" Value=".class public sequential ansi serializable sealed beforefieldinit Complex extends System.ValueType implements class System.IEquatable`1<valuetype System.Numerics.Complex>, class System.IFormattable" FrameworkAlternate="netframework-4.0;netframework-4.5;netframework-4.5.1;netframework-4.5.2;netframework-4.6;netframework-4.6.1;netframework-4.6.2;netframework-4.7;netframework-4.7.1;netframework-4.7.2;netframework-4.8;netframework-4.8.1" />
<AssemblyInfo>
<AssemblyName>System.Runtime.Numerics</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>4.1.0.0</AssemblyVersion>
<AssemblyVersion>4.1.1.0</AssemblyVersion>
<AssemblyVersion>4.1.2.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>System.Numerics</AssemblyName>
<AssemblyVersion>2.0.5.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>netstandard</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>2.1.0.0</AssemblyVersion>
</AssemblyInfo>
<TypeForwardingChain>
<TypeForwarding From="System.Numerics" FromVersion="4.0.0.0" To="System.Runtime.Numerics" ToVersion="0.0.0.0" FrameworkAlternate="dotnet-uwp-10.0" />
<TypeForwarding From="netstandard" FromVersion="2.1.0.0" To="System.Runtime.Numerics" ToVersion="10.0.0.0" FrameworkAlternate="net-10.0" />
<TypeForwarding From="netstandard" FromVersion="2.1.0.0" To="System.Runtime.Numerics" ToVersion="5.0.0.0" FrameworkAlternate="net-5.0" />
<TypeForwarding From="netstandard" FromVersion="2.1.0.0" To="System.Runtime.Numerics" ToVersion="6.0.0.0" FrameworkAlternate="net-6.0" />
<TypeForwarding From="netstandard" FromVersion="2.1.0.0" To="System.Runtime.Numerics" ToVersion="7.0.0.0" FrameworkAlternate="net-7.0" />
<TypeForwarding From="netstandard" FromVersion="2.1.0.0" To="System.Runtime.Numerics" ToVersion="8.0.0.0" FrameworkAlternate="net-8.0" />
<TypeForwarding From="netstandard" FromVersion="2.1.0.0" To="System.Runtime.Numerics" ToVersion="9.0.0.0" FrameworkAlternate="net-9.0" />
</TypeForwardingChain>
<Base>
<BaseTypeName>System.ValueType</BaseTypeName>
</Base>
<Interfaces>
<Interface>
<InterfaceName>System.IEquatable<System.Numerics.Complex></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.IFormattable</InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.0;net-7.0;net-8.0;net-9.0">
<InterfaceName>System.IEquatable<TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.0;net-7.0;net-8.0;net-9.0">
<InterfaceName>System.IParsable<System.Numerics.Complex></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.0;net-7.0;net-8.0;net-9.0">
<InterfaceName>System.IParsable<TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.0;net-7.0;net-8.0;net-9.0">
<InterfaceName>System.ISpanFormattable</InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.0;net-7.0;net-8.0;net-9.0">
<InterfaceName>System.ISpanParsable<System.Numerics.Complex></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.0;net-7.0;net-8.0;net-9.0">
<InterfaceName>System.ISpanParsable<TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.0;net-8.0;net-9.0">
<InterfaceName>System.IUtf8SpanFormattable</InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.0;net-8.0;net-9.0">
<InterfaceName>System.IUtf8SpanParsable<System.Numerics.Complex></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.0;net-8.0;net-9.0">
<InterfaceName>System.IUtf8SpanParsable<TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.0;net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IAdditionOperators<System.Numerics.Complex,System.Numerics.Complex,System.Numerics.Complex></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.0;net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IAdditionOperators<TSelf,TSelf,TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.0;net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IAdditiveIdentity<System.Numerics.Complex,System.Numerics.Complex></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.0;net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IAdditiveIdentity<TSelf,TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.0;net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IDecrementOperators<System.Numerics.Complex></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.0;net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IDecrementOperators<TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.0;net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IDivisionOperators<System.Numerics.Complex,System.Numerics.Complex,System.Numerics.Complex></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.0;net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IDivisionOperators<TSelf,TSelf,TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.0;net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IEqualityOperators<System.Numerics.Complex,System.Numerics.Complex,System.Boolean></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.0;net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IEqualityOperators<TSelf,TSelf,System.Boolean></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.0;net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IIncrementOperators<System.Numerics.Complex></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.0;net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IIncrementOperators<TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.0;net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IMultiplicativeIdentity<System.Numerics.Complex,System.Numerics.Complex></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.0;net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IMultiplicativeIdentity<TSelf,TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.0;net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IMultiplyOperators<System.Numerics.Complex,System.Numerics.Complex,System.Numerics.Complex></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.0;net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IMultiplyOperators<TSelf,TSelf,TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.0;net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.INumberBase<System.Numerics.Complex></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.0;net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.INumberBase<TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.0;net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.ISignedNumber<System.Numerics.Complex></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.0;net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.ISubtractionOperators<System.Numerics.Complex,System.Numerics.Complex,System.Numerics.Complex></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.0;net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.ISubtractionOperators<TSelf,TSelf,TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.0;net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IUnaryNegationOperators<System.Numerics.Complex,System.Numerics.Complex></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.0;net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IUnaryNegationOperators<TSelf,TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.0;net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IUnaryPlusOperators<System.Numerics.Complex,System.Numerics.Complex></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.0;net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IUnaryPlusOperators<TSelf,TSelf></InterfaceName>
</Interface>
</Interfaces>
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-6.0;net-7.0;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.IsReadOnly]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.IsReadOnly>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0;netframework-4.5;netframework-4.5.1;netframework-4.5.2;netframework-4.6;netframework-4.6.1;netframework-4.6.2;netframework-4.7;netframework-4.7.1;netframework-4.7.2;netframework-4.8;netframework-4.8.1">
<AttributeName Language="C#">[System.Serializable]</AttributeName>
<AttributeName Language="F#">[<System.Serializable>]</AttributeName>
</Attribute>
</Attributes>
<Docs>
<summary>Represents a complex number.</summary>
<remarks>For more information about this API, see <see href="/dotnet/fundamentals/runtime-libraries/system-numerics-complex">Supplemental API remarks for Complex</see>.</remarks>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public Complex (double real, double imaginary);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(float64 real, float64 imaginary) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.Complex.#ctor(System.Double,System.Double)" />
<MemberSignature Language="VB.NET" Value="Public Sub New (real As Double, imaginary As Double)" />
<MemberSignature Language="F#" Value="new System.Numerics.Complex : double * double -> System.Numerics.Complex" Usage="new System.Numerics.Complex (real, imaginary)" />
<MemberSignature Language="C++ CLI" Value="public:
 Complex(double real, double imaginary);" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>System.Runtime.Numerics</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>4.1.0.0</AssemblyVersion>
<AssemblyVersion>4.1.1.0</AssemblyVersion>
<AssemblyVersion>4.1.2.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>System.Numerics</AssemblyName>
<AssemblyVersion>2.0.5.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>netstandard</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>2.1.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
</Attributes>
<Parameters>
<Parameter Name="real" Type="System.Double" />
<Parameter Name="imaginary" Type="System.Double" />
</Parameters>
<Docs>
<param name="real">The real part of the complex number.</param>
<param name="imaginary">The imaginary part of the complex number.</param>
<summary>Initializes a new instance of the <see cref="T:System.Numerics.Complex" /> structure using the specified real and imaginary values.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The `real` or `imaginary` arguments may lose precision if they are data types that require an explicit cast to <xref:System.Double>.
## Examples
The following example instantiates two complex numbers, and then uses them in addition, subtraction, multiplication, and division operations.
:::code language="csharp" source="~/snippets/csharp/System.Numerics/Complex/.ctor/ctor1.cs" interactive="try-dotnet" id="Snippet1":::
:::code language="fsharp" source="~/snippets/fsharp/System.Numerics/Complex/.ctor/ctor1.fs" id="Snippet1":::
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR_System/system.numerics.complex.ctor/vb/ctor1.vb" id="Snippet1":::
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="Abs">
<MemberSignature Language="C#" Value="public static double Abs (System.Numerics.Complex value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float64 Abs(valuetype System.Numerics.Complex value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.Complex.Abs(System.Numerics.Complex)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Abs (value As Complex) As Double" />
<MemberSignature Language="F#" Value="static member Abs : System.Numerics.Complex -> double" Usage="System.Numerics.Complex.Abs value" />
<MemberSignature Language="C++ CLI" Value="public:
 static double Abs(System::Numerics::Complex value);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Runtime.Numerics</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>4.1.0.0</AssemblyVersion>
<AssemblyVersion>4.1.1.0</AssemblyVersion>
<AssemblyVersion>4.1.2.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>System.Numerics</AssemblyName>
<AssemblyVersion>2.0.5.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>netstandard</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>2.1.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.Numerics.Complex" />
</Parameters>
<Docs>
<param name="value">A complex number.</param>
<summary>Gets the absolute value (or magnitude) of a complex number.</summary>
<returns>The absolute value of <paramref name="value" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The absolute value of a complex number is equivalent to its <xref:System.Numerics.Complex.Magnitude%2A> property. The absolute value of a complex number `a + bi` is calculated as follows:
- If `b = 0`, the result is `a`.
- If `a > b`, the result is $a \times \sqrt{1 + \frac{b^2}{a^2}}$.
- If `b > a`, the result is $b \times \sqrt{1 + \frac{a^2}{b^2}}$.
If the calculation of the absolute value results in an overflow, the method returns either <xref:System.Double.PositiveInfinity?displayProperty=nameWithType> or <xref:System.Double.NegativeInfinity?displayProperty=nameWithType>. If either the <xref:System.Numerics.Complex.Real%2A> or <xref:System.Numerics.Complex.Imaginary%2A> property is <xref:System.Double.NaN?displayProperty=nameWithType> and the other property is neither <xref:System.Double.PositiveInfinity?displayProperty=nameWithType> nor <xref:System.Double.NegativeInfinity?displayProperty=nameWithType>, the method returns <xref:System.Double.NaN?displayProperty=nameWithType>.
## Examples
The following example calculates the absolute value of a complex number and demonstrates that it is equivalent to the value of the <xref:System.Numerics.Complex.Magnitude%2A> property.
:::code language="csharp" source="~/snippets/csharp/System.Numerics/Complex/Abs/abs1.cs" interactive="try-dotnet" id="Snippet1":::
:::code language="fsharp" source="~/snippets/fsharp/System.Numerics/Complex/Abs/abs1.fs" id="Snippet1":::
]]></format>
</remarks>
<altmember cref="P:System.Numerics.Complex.Magnitude" />
</Docs>
</Member>
<Member MemberName="Acos">
<MemberSignature Language="C#" Value="public static System.Numerics.Complex Acos (System.Numerics.Complex value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Numerics.Complex Acos(valuetype System.Numerics.Complex value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.Complex.Acos(System.Numerics.Complex)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Acos (value As Complex) As Complex" />
<MemberSignature Language="F#" Value="static member Acos : System.Numerics.Complex -> System.Numerics.Complex" Usage="System.Numerics.Complex.Acos value" />
<MemberSignature Language="C++ CLI" Value="public:
 static System::Numerics::Complex Acos(System::Numerics::Complex value);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Runtime.Numerics</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>4.1.0.0</AssemblyVersion>
<AssemblyVersion>4.1.1.0</AssemblyVersion>
<AssemblyVersion>4.1.2.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>System.Numerics</AssemblyName>
<AssemblyVersion>2.0.5.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>netstandard</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>2.1.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Numerics.Complex</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.Numerics.Complex" />
</Parameters>
<Docs>
<param name="value">A complex number that represents a cosine.</param>
<summary>Returns the angle that is the arc cosine of the specified complex number.</summary>
<returns>The angle, measured in radians, which is the arc cosine of <paramref name="value" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The <xref:System.Numerics.Complex.Acos%2A> method for complex numbers corresponds to the <xref:System.Math.Acos%2A?displayProperty=nameWithType> method for real numbers.
The <xref:System.Numerics.Complex.Acos%2A> method uses the following formula:
`(-ImaginaryOne) * Log(value + ImaginaryOne * Sqrt(One - value * value))`
## Examples
The following example illustrates the <xref:System.Numerics.Complex.Acos%2A> method. It shows that passing the value returned by the <xref:System.Numerics.Complex.Acos%2A> method to the <xref:System.Numerics.Complex.Cos%2A> method returns the original <xref:System.Numerics.Complex> value.
:::code language="csharp" source="~/snippets/csharp/System.Numerics/Complex/Acos/acos1.cs" id="Snippet1":::
:::code language="fsharp" source="~/snippets/fsharp/System.Numerics/Complex/Acos/acos1.fs" id="Snippet1":::
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR_System/system.numerics.complex.acos/vb/acos1.vb" id="Snippet1":::
]]></format>
</remarks>
<altmember cref="M:System.Numerics.Complex.Cos(System.Numerics.Complex)" />
<altmember cref="M:System.Math.Acos(System.Double)" />
</Docs>
</Member>
<MemberGroup MemberName="Add">
<Docs>
<summary>Adds a specified number to another specified number, where at least one of them is a complex number, and the other could be a double-precision real number.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The <xref:System.Numerics.Complex.Add%2A> methods allow performing addition operations that involve complex numbers.
If the method call results in an overflow in either the real or imaginary component, the value of the component is either <xref:System.Double.PositiveInfinity?displayProperty=nameWithType> or <xref:System.Double.NegativeInfinity?displayProperty=nameWithType>.
Languages that don't support custom operators can use the <xref:System.Numerics.Complex.Add%2A> method to perform addition with complex numbers.
The <xref:System.Numerics.Complex.Add%2A> methods that receive one double are more efficient than the methods that receive two complex numbers.
## Examples
The following example illustrates addition with complex numbers.
:::code language="csharp" source="~/snippets/csharp/System.Numerics/Complex/Add/add1.cs" interactive="try-dotnet" id="Snippet1":::
:::code language="fsharp" source="~/snippets/fsharp/System.Numerics/Complex/Add/add1.fs" id="Snippet1":::
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR_System/system.numerics.complex.add/vb/add1.vb" id="Snippet1":::
]]></format>
</remarks>
</Docs>
</MemberGroup>
<Member MemberName="Add">
<MemberSignature Language="C#" Value="public static System.Numerics.Complex Add (double left, System.Numerics.Complex right);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Numerics.Complex Add(float64 left, valuetype System.Numerics.Complex right) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.Complex.Add(System.Double,System.Numerics.Complex)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Add (left As Double, right As Complex) As Complex" />
<MemberSignature Language="F#" Value="static member Add : double * System.Numerics.Complex -> System.Numerics.Complex" Usage="System.Numerics.Complex.Add (left, right)" />
<MemberSignature Language="C++ CLI" Value="public:
 static System::Numerics::Complex Add(double left, System::Numerics::Complex right);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Runtime.Numerics</AssemblyName>
<AssemblyVersion>4.1.1.0</AssemblyVersion>
<AssemblyVersion>4.1.2.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>System.Numerics</AssemblyName>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>netstandard</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Numerics.Complex</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="left" Type="System.Double" Index="0" FrameworkAlternate="netcore-3.0;netcore-3.1;net-5.0;net-6.0;net-7.0;net-8.0;net-9.0;net-10.0" />
<Parameter Name="right" Type="System.Numerics.Complex" Index="1" FrameworkAlternate="netcore-3.0;netcore-3.1;net-5.0;net-6.0;net-7.0;net-8.0;net-9.0;net-10.0" />
</Parameters>
<Docs>
<param name="left">The double-precision real value to add.</param>
<param name="right">The complex value to add.</param>
<summary>Adds a double-precision real number to a complex number and returns the result.</summary>
<returns>The sum of <paramref name="left" /> and <paramref name="right" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The addition of a real number (which can be regarded as the complex number `a + 0i`) and a complex number (`c + di`) takes the following form:
$(a + c) + di$
]]></format>
</remarks>
<altmember cref="M:System.Numerics.Complex.op_Addition(System.Double,System.Numerics.Complex)" />
</Docs>
</Member>
<Member MemberName="Add">
<MemberSignature Language="C#" Value="public static System.Numerics.Complex Add (System.Numerics.Complex left, double right);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Numerics.Complex Add(valuetype System.Numerics.Complex left, float64 right) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.Complex.Add(System.Numerics.Complex,System.Double)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Add (left As Complex, right As Double) As Complex" />
<MemberSignature Language="F#" Value="static member Add : System.Numerics.Complex * double -> System.Numerics.Complex" Usage="System.Numerics.Complex.Add (left, right)" />
<MemberSignature Language="C++ CLI" Value="public:
 static System::Numerics::Complex Add(System::Numerics::Complex left, double right);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Runtime.Numerics</AssemblyName>
<AssemblyVersion>4.1.1.0</AssemblyVersion>
<AssemblyVersion>4.1.2.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>System.Numerics</AssemblyName>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>netstandard</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Numerics.Complex</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="left" Type="System.Numerics.Complex" Index="0" FrameworkAlternate="netcore-3.0;netcore-3.1;net-5.0;net-6.0;net-7.0;net-8.0;net-9.0;net-10.0" />
<Parameter Name="right" Type="System.Double" Index="1" FrameworkAlternate="netcore-3.0;netcore-3.1;net-5.0;net-6.0;net-7.0;net-8.0;net-9.0;net-10.0" />
</Parameters>
<Docs>
<param name="left">The complex value to add.</param>
<param name="right">The double-precision real value to add.</param>
<summary>Adds a complex number to a double-precision real number and returns the result.</summary>
<returns>The sum of <paramref name="left" /> and <paramref name="right" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
The addition of a complex number (`a + bi`) and a real number (which can be regarded as the complex number `c + 0i`) takes the following form:
$(a + c) + bi$
]]></format>
</remarks>
<altmember cref="M:System.Numerics.Complex.op_Addition(System.Numerics.Complex,System.Double)" />
</Docs>
</Member>
<Member MemberName="Add">
<MemberSignature Language="C#" Value="public static System.Numerics.Complex Add (System.Numerics.Complex left, System.Numerics.Complex right);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Numerics.Complex Add(valuetype System.Numerics.Complex left, valuetype System.Numerics.Complex right) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.Complex.Add(System.Numerics.Complex,System.Numerics.Complex)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Add (left As Complex, right As Complex) As Complex" />
<MemberSignature Language="F#" Value="static member Add : System.Numerics.Complex * System.Numerics.Complex -> System.Numerics.Complex" Usage="System.Numerics.Complex.Add (left, right)" />
<MemberSignature Language="C++ CLI" Value="public:
 static System::Numerics::Complex Add(System::Numerics::Complex left, System::Numerics::Complex right);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Runtime.Numerics</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>4.1.0.0</AssemblyVersion>
<AssemblyVersion>4.1.1.0</AssemblyVersion>
<AssemblyVersion>4.1.2.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>System.Numerics</AssemblyName>
<AssemblyVersion>2.0.5.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>netstandard</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>2.1.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Numerics.Complex</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="left" Type="System.Numerics.Complex" />
<Parameter Name="right" Type="System.Numerics.Complex" />
</Parameters>
<Docs>
<param name="left">The first complex number to add.</param>
<param name="right">The second complex number to add.</param>
<summary>Adds two complex numbers and returns the result.</summary>
<returns>The sum of <paramref name="left" /> and <paramref name="right" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The addition of a complex number, `a + bi`, and a second complex number, `c + di`, takes the following form:
$(a + c) + (b + d)i$
]]></format>
</remarks>
<altmember cref="M:System.Numerics.Complex.op_Addition(System.Numerics.Complex,System.Numerics.Complex)" />
</Docs>
</Member>
<Member MemberName="Asin">
<MemberSignature Language="C#" Value="public static System.Numerics.Complex Asin (System.Numerics.Complex value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Numerics.Complex Asin(valuetype System.Numerics.Complex value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.Complex.Asin(System.Numerics.Complex)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Asin (value As Complex) As Complex" />
<MemberSignature Language="F#" Value="static member Asin : System.Numerics.Complex -> System.Numerics.Complex" Usage="System.Numerics.Complex.Asin value" />
<MemberSignature Language="C++ CLI" Value="public:
 static System::Numerics::Complex Asin(System::Numerics::Complex value);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Runtime.Numerics</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>4.1.0.0</AssemblyVersion>
<AssemblyVersion>4.1.1.0</AssemblyVersion>
<AssemblyVersion>4.1.2.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>System.Numerics</AssemblyName>
<AssemblyVersion>2.0.5.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>netstandard</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>2.1.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Numerics.Complex</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.Numerics.Complex" />
</Parameters>
<Docs>
<param name="value">A complex number.</param>
<summary>Returns the angle that is the arc sine of the specified complex number.</summary>
<returns>The angle that is the arc sine of <paramref name="value" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The <xref:System.Numerics.Complex.Asin%2A> method for complex numbers corresponds to the <xref:System.Math.Asin%2A?displayProperty=nameWithType> method for real numbers.
The <xref:System.Numerics.Complex.Asin%2A> method uses the following formula:
`-ImaginaryOne * Log(ImaginaryOne * value + Sqrt(One - value * value))`
## Examples
The following example illustrates the <xref:System.Numerics.Complex.Asin%2A> method. It shows that passing the value returned by the <xref:System.Numerics.Complex.Asin%2A> method to the <xref:System.Numerics.Complex.Sin%2A> method returns the original <xref:System.Numerics.Complex> value.
:::code language="csharp" source="~/snippets/csharp/System.Numerics/Complex/Asin/asin1.cs" id="Snippet1":::
:::code language="fsharp" source="~/snippets/fsharp/System.Numerics/Complex/Asin/asin1.fs" id="Snippet1":::
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR_System/system.numerics.complex.asin/vb/asin1.vb" id="Snippet1":::
]]></format>
</remarks>
<altmember cref="M:System.Numerics.Complex.Sin(System.Numerics.Complex)" />
<altmember cref="M:System.Math.Asin(System.Double)" />
</Docs>
</Member>
<Member MemberName="Atan">
<MemberSignature Language="C#" Value="public static System.Numerics.Complex Atan (System.Numerics.Complex value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Numerics.Complex Atan(valuetype System.Numerics.Complex value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.Complex.Atan(System.Numerics.Complex)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Atan (value As Complex) As Complex" />
<MemberSignature Language="F#" Value="static member Atan : System.Numerics.Complex -> System.Numerics.Complex" Usage="System.Numerics.Complex.Atan value" />
<MemberSignature Language="C++ CLI" Value="public:
 static System::Numerics::Complex Atan(System::Numerics::Complex value);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Runtime.Numerics</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>4.1.0.0</AssemblyVersion>
<AssemblyVersion>4.1.1.0</AssemblyVersion>
<AssemblyVersion>4.1.2.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>System.Numerics</AssemblyName>
<AssemblyVersion>2.0.5.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>netstandard</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>2.1.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Numerics.Complex</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.Numerics.Complex" />
</Parameters>
<Docs>
<param name="value">A complex number.</param>
<summary>Returns the angle that is the arc tangent of the specified complex number.</summary>
<returns>The angle that is the arc tangent of <paramref name="value" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The <xref:System.Numerics.Complex.Atan%2A> method for complex numbers corresponds to the <xref:System.Math.Atan%2A?displayProperty=nameWithType> method for real numbers.
The <xref:System.Numerics.Complex.Atan%2A> method uses the following formula:
`(ImaginaryOne / new Complex(2.0, 0.0)) * (Log(One - ImaginaryOne * value) - Log(One + ImaginaryOne * value))`
## Examples
The following example illustrates the <xref:System.Numerics.Complex.Atan%2A> method. It shows that passing the value returned by the <xref:System.Numerics.Complex.Atan%2A> method to the <xref:System.Numerics.Complex.Tan%2A> method returns the original <xref:System.Numerics.Complex> value.
:::code language="csharp" source="~/snippets/csharp/System.Numerics/Complex/Atan/atan1.cs" id="Snippet1":::
:::code language="fsharp" source="~/snippets/fsharp/System.Numerics/Complex/Atan/atan1.fs" id="Snippet1":::
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR_System/system.numerics.complex.atan/vb/atan1.vb" id="Snippet1":::
]]></format>
</remarks>
<altmember cref="M:System.Numerics.Complex.Tan(System.Numerics.Complex)" />
<altmember cref="M:System.Math.Atan(System.Double)" />
</Docs>
</Member>
<Member MemberName="Conjugate">
<MemberSignature Language="C#" Value="public static System.Numerics.Complex Conjugate (System.Numerics.Complex value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Numerics.Complex Conjugate(valuetype System.Numerics.Complex value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.Complex.Conjugate(System.Numerics.Complex)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Conjugate (value As Complex) As Complex" />
<MemberSignature Language="F#" Value="static member Conjugate : System.Numerics.Complex -> System.Numerics.Complex" Usage="System.Numerics.Complex.Conjugate value" />
<MemberSignature Language="C++ CLI" Value="public:
 static System::Numerics::Complex Conjugate(System::Numerics::Complex value);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Runtime.Numerics</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>4.1.0.0</AssemblyVersion>
<AssemblyVersion>4.1.1.0</AssemblyVersion>
<AssemblyVersion>4.1.2.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>System.Numerics</AssemblyName>
<AssemblyVersion>2.0.5.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>netstandard</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>2.1.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Numerics.Complex</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.Numerics.Complex" />
</Parameters>
<Docs>
<param name="value">A complex number.</param>
<summary>Computes the conjugate of a complex number and returns the result.</summary>
<returns>The conjugate of <paramref name="value" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The conjugate of a complex number inverts the sign of the imaginary component; that is, it applies unary negation to the imaginary component. If `a + bi` is a complex number, its conjugate is `a - bi`.
## Examples
The following example displays the conjugate of two complex numbers.
:::code language="csharp" source="~/snippets/csharp/System.Numerics/Complex/Conjugate/conjugate1.cs" interactive="try-dotnet" id="Snippet1":::
:::code language="fsharp" source="~/snippets/fsharp/System.Numerics/Complex/Conjugate/conjugate1.fs" id="Snippet1":::
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR_System/system.numerics.complex.conjugate/vb/conjugate1.vb" id="Snippet1":::
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="Cos">
<MemberSignature Language="C#" Value="public static System.Numerics.Complex Cos (System.Numerics.Complex value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Numerics.Complex Cos(valuetype System.Numerics.Complex value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.Complex.Cos(System.Numerics.Complex)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Cos (value As Complex) As Complex" />
<MemberSignature Language="F#" Value="static member Cos : System.Numerics.Complex -> System.Numerics.Complex" Usage="System.Numerics.Complex.Cos value" />
<MemberSignature Language="C++ CLI" Value="public:
 static System::Numerics::Complex Cos(System::Numerics::Complex value);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Runtime.Numerics</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>4.1.0.0</AssemblyVersion>
<AssemblyVersion>4.1.1.0</AssemblyVersion>
<AssemblyVersion>4.1.2.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>System.Numerics</AssemblyName>
<AssemblyVersion>2.0.5.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>netstandard</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>2.1.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Numerics.Complex</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.Numerics.Complex" />
</Parameters>
<Docs>
<param name="value">A complex number.</param>
<summary>Returns the cosine of the specified complex number.</summary>
<returns>The cosine of <paramref name="value" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The <xref:System.Numerics.Complex.Cos%2A> method for complex numbers corresponds to the <xref:System.Math.Cos%2A?displayProperty=nameWithType> method for real numbers.
The <xref:System.Numerics.Complex.Cos%2A> method calculates the cosine of the complex number `a + bi` as `x + yi`, where:
- `x` is $\cos a \times \cosh b$
- `y` is $-(\sin a \times \sinh b)$
## Examples
The following example illustrates the <xref:System.Numerics.Complex.Acos%2A> method. It shows that passing the value returned by the <xref:System.Numerics.Complex.Acos%2A> method to the <xref:System.Numerics.Complex.Cos%2A> method returns the original <xref:System.Numerics.Complex> value.
:::code language="csharp" source="~/snippets/csharp/System.Numerics/Complex/Acos/acos1.cs" id="Snippet1":::
:::code language="fsharp" source="~/snippets/fsharp/System.Numerics/Complex/Acos/acos1.fs" id="Snippet1":::
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR_System/system.numerics.complex.acos/vb/acos1.vb" id="Snippet1":::
]]></format>
</remarks>
<altmember cref="M:System.Numerics.Complex.Acos(System.Numerics.Complex)" />
<altmember cref="M:System.Math.Cos(System.Double)" />
</Docs>
</Member>
<Member MemberName="Cosh">
<MemberSignature Language="C#" Value="public static System.Numerics.Complex Cosh (System.Numerics.Complex value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Numerics.Complex Cosh(valuetype System.Numerics.Complex value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.Complex.Cosh(System.Numerics.Complex)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Cosh (value As Complex) As Complex" />
<MemberSignature Language="F#" Value="static member Cosh : System.Numerics.Complex -> System.Numerics.Complex" Usage="System.Numerics.Complex.Cosh value" />
<MemberSignature Language="C++ CLI" Value="public:
 static System::Numerics::Complex Cosh(System::Numerics::Complex value);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Runtime.Numerics</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>4.1.0.0</AssemblyVersion>
<AssemblyVersion>4.1.1.0</AssemblyVersion>
<AssemblyVersion>4.1.2.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>System.Numerics</AssemblyName>
<AssemblyVersion>2.0.5.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>netstandard</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>2.1.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Numerics.Complex</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.Numerics.Complex" />
</Parameters>
<Docs>
<param name="value">A complex number.</param>
<summary>Returns the hyperbolic cosine of the specified complex number.</summary>
<returns>The hyperbolic cosine of <paramref name="value" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The <xref:System.Numerics.Complex.Cosh%2A> method for complex numbers corresponds to the <xref:System.Math.Cosh%2A?displayProperty=nameWithType> method for real numbers.
The <xref:System.Numerics.Complex.Cosh%2A> method calculates the hyperbolic cosine of the complex number `a + bi` as `x + yi`, where:
- `x` is $\cosh a \times \cos b$
- `y` is $\sinh a \times \sin b$
]]></format>
</remarks>
<altmember cref="M:System.Math.Cosh(System.Double)" />
</Docs>
</Member>
<Member MemberName="CreateChecked<TOther>">
<MemberSignature Language="C#" Value="public static System.Numerics.Complex CreateChecked<TOther> (TOther value) where TOther : System.Numerics.INumberBase<TOther>;" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Numerics.Complex CreateChecked<(class System.Numerics.INumberBase`1<!!TOther>) TOther>(!!TOther value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.Complex.CreateChecked``1(``0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function CreateChecked(Of TOther As INumberBase(Of TOther)) (value As TOther) As Complex" />
<MemberSignature Language="F#" Value="static member CreateChecked : 'Other -> System.Numerics.Complex (requires 'Other :> System.Numerics.INumberBase<'Other>)" Usage="System.Numerics.Complex.CreateChecked value" />
<MemberSignature Language="C++ CLI" Value="public:
generic <typename TOther>
 where TOther : System::Numerics::INumberBase<TOther> static System::Numerics::Complex CreateChecked(TOther value) = System::Numerics::INumberBase<System::Numerics::Complex>::CreateChecked;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Numerics.INumberBase`1.CreateChecked``1(``0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime.Numerics</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>System.Numerics</AssemblyName>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>netstandard</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Numerics.Complex</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="TOther">
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(0)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(0)>]</AttributeName>
</Attribute>
</Attributes>
<Constraints>
<InterfaceName>System.Numerics.INumberBase<TOther></InterfaceName>
</Constraints>
</TypeParameter>
</TypeParameters>
<Parameters>
<Parameter Name="value" Type="TOther" Index="0" FrameworkAlternate="net-7.0;net-8.0;net-9.0;net-10.0" />
</Parameters>
<Docs>
<typeparam name="TOther">The type of <paramref name="value" />.</typeparam>
<param name="value">The value that's used to create the instance of <typeparamref name="TSelf" />.</param>
<summary>Creates an instance of the current type from a value, throwing an overflow exception for any values that fall outside the representable range of the current type.</summary>
<returns>An instance of <typeparamref name="TSelf" /> created from <paramref name="value" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc cref="M:System.Numerics.INumberBase`1.CreateChecked``1(``0)" />
</Docs>
</Member>
<Member MemberName="CreateSaturating<TOther>">
<MemberSignature Language="C#" Value="public static System.Numerics.Complex CreateSaturating<TOther> (TOther value) where TOther : System.Numerics.INumberBase<TOther>;" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Numerics.Complex CreateSaturating<(class System.Numerics.INumberBase`1<!!TOther>) TOther>(!!TOther value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.Complex.CreateSaturating``1(``0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function CreateSaturating(Of TOther As INumberBase(Of TOther)) (value As TOther) As Complex" />
<MemberSignature Language="F#" Value="static member CreateSaturating : 'Other -> System.Numerics.Complex (requires 'Other :> System.Numerics.INumberBase<'Other>)" Usage="System.Numerics.Complex.CreateSaturating value" />
<MemberSignature Language="C++ CLI" Value="public:
generic <typename TOther>
 where TOther : System::Numerics::INumberBase<TOther> static System::Numerics::Complex CreateSaturating(TOther value) = System::Numerics::INumberBase<System::Numerics::Complex>::CreateSaturating;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Numerics.INumberBase`1.CreateSaturating``1(``0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime.Numerics</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>System.Numerics</AssemblyName>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>netstandard</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Numerics.Complex</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="TOther">
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(0)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(0)>]</AttributeName>
</Attribute>
</Attributes>
<Constraints>
<InterfaceName>System.Numerics.INumberBase<TOther></InterfaceName>
</Constraints>
</TypeParameter>
</TypeParameters>
<Parameters>
<Parameter Name="value" Type="TOther" Index="0" FrameworkAlternate="net-7.0;net-8.0;net-9.0;net-10.0" />
</Parameters>
<Docs>
<typeparam name="TOther">The type of <paramref name="value" />.</typeparam>
<param name="value">The value that's used to create the instance of <typeparamref name="TSelf" />.</param>
<summary>Creates an instance of the current type from a value, saturating any values that fall outside the representable range of the current type.</summary>
<returns>An instance of <typeparamref name="TSelf" /> created from <paramref name="value" />, saturating if <paramref name="value" /> falls outside the representable range of <typeparamref name="TSelf" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc cref="M:System.Numerics.INumberBase`1.CreateSaturating``1(``0)" />
</Docs>
</Member>
<Member MemberName="CreateTruncating<TOther>">
<MemberSignature Language="C#" Value="public static System.Numerics.Complex CreateTruncating<TOther> (TOther value) where TOther : System.Numerics.INumberBase<TOther>;" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Numerics.Complex CreateTruncating<(class System.Numerics.INumberBase`1<!!TOther>) TOther>(!!TOther value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.Complex.CreateTruncating``1(``0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function CreateTruncating(Of TOther As INumberBase(Of TOther)) (value As TOther) As Complex" />
<MemberSignature Language="F#" Value="static member CreateTruncating : 'Other -> System.Numerics.Complex (requires 'Other :> System.Numerics.INumberBase<'Other>)" Usage="System.Numerics.Complex.CreateTruncating value" />
<MemberSignature Language="C++ CLI" Value="public:
generic <typename TOther>
 where TOther : System::Numerics::INumberBase<TOther> static System::Numerics::Complex CreateTruncating(TOther value) = System::Numerics::INumberBase<System::Numerics::Complex>::CreateTruncating;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Numerics.INumberBase`1.CreateTruncating``1(``0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime.Numerics</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>System.Numerics</AssemblyName>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>netstandard</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Numerics.Complex</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="TOther">
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(0)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(0)>]</AttributeName>
</Attribute>