1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
4 
5 [assembly:System.Reflection.AssemblyVersionAttribute("4.0.0.0")]
6 [assembly:System.CLSCompliantAttribute(true)]
7 [assembly:System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute.DebuggingModes)(258))]
8 [assembly:System.Reflection.AssemblyCompanyAttribute("Mono development team")]
9 [assembly:System.Reflection.AssemblyCopyrightAttribute("(c) Various Mono authors")]
10 [assembly:System.Reflection.AssemblyDefaultAliasAttribute("System.Numerics.dll")]
11 [assembly:System.Reflection.AssemblyDescriptionAttribute("System.Numerics.dll")]
12 [assembly:System.Reflection.AssemblyFileVersionAttribute("4.0.30319.17020")]
13 [assembly:System.Reflection.AssemblyInformationalVersionAttribute("4.0.30319.17020")]
14 [assembly:System.Reflection.AssemblyProductAttribute("Mono Common Language Infrastructure")]
15 [assembly:System.Reflection.AssemblyTitleAttribute("System.Numerics.dll")]
16 [assembly:System.Resources.NeutralResourcesLanguageAttribute("en-US")]
17 [assembly:System.Resources.SatelliteContractVersionAttribute("4.0.0.0")]
18 [assembly:System.Runtime.CompilerServices.ReferenceAssemblyAttribute]
19 [assembly:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)]
20 [assembly:System.Runtime.InteropServices.ComVisibleAttribute(false)]
21 [assembly:System.Security.SecurityCriticalAttribute]
22 [assembly:System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.RequestMinimum, SkipVerification=true)]
23 namespace System.Numerics
24 {
25     [System.SerializableAttribute]
26     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
27     public partial struct BigInteger : System.IComparable, System.IComparable<System.Numerics.BigInteger>, System.IEquatable<System.Numerics.BigInteger>, System.IFormattable
28     {
29         [System.CLSCompliantAttribute(false)]
BigIntegerSystem.Numerics.BigInteger30         public BigInteger(byte[] value) { throw null;}
BigIntegerSystem.Numerics.BigInteger31         public BigInteger(decimal value) { throw null;}
BigIntegerSystem.Numerics.BigInteger32         public BigInteger(double value) { throw null;}
BigIntegerSystem.Numerics.BigInteger33         public BigInteger(int value) { throw null;}
BigIntegerSystem.Numerics.BigInteger34         public BigInteger(long value) { throw null;}
BigIntegerSystem.Numerics.BigInteger35         public BigInteger(float value) { throw null;}
36         [System.CLSCompliantAttribute(false)]
BigIntegerSystem.Numerics.BigInteger37         public BigInteger(uint value) { throw null;}
38         [System.CLSCompliantAttribute(false)]
BigIntegerSystem.Numerics.BigInteger39         public BigInteger(ulong value) { throw null;}
40         public bool IsEven { get { throw null; } }
41         public bool IsOne { get { throw null; } }
42         public bool IsPowerOfTwo { get { throw null; } }
43         public bool IsZero { get { throw null; } }
44         public static System.Numerics.BigInteger MinusOne { get { throw null; } }
45         public static System.Numerics.BigInteger One { get { throw null; } }
46         public int Sign { get { throw null; } }
47         public static System.Numerics.BigInteger Zero { get { throw null; } }
AbsSystem.Numerics.BigInteger48         public static System.Numerics.BigInteger Abs(System.Numerics.BigInteger value) { throw null; }
AddSystem.Numerics.BigInteger49         public static System.Numerics.BigInteger Add(System.Numerics.BigInteger left, System.Numerics.BigInteger right) { throw null; }
CompareSystem.Numerics.BigInteger50         public static int Compare(System.Numerics.BigInteger left, System.Numerics.BigInteger right) { throw null; }
CompareToSystem.Numerics.BigInteger51         public int CompareTo(long other) { throw null; }
CompareToSystem.Numerics.BigInteger52         public int CompareTo(System.Numerics.BigInteger other) { throw null; }
CompareToSystem.Numerics.BigInteger53         public int CompareTo(object obj) { throw null; }
54         [System.CLSCompliantAttribute(false)]
CompareToSystem.Numerics.BigInteger55         public int CompareTo(ulong other) { throw null; }
DivideSystem.Numerics.BigInteger56         public static System.Numerics.BigInteger Divide(System.Numerics.BigInteger dividend, System.Numerics.BigInteger divisor) { throw null; }
DivRemSystem.Numerics.BigInteger57         public static System.Numerics.BigInteger DivRem(System.Numerics.BigInteger dividend, System.Numerics.BigInteger divisor, out System.Numerics.BigInteger remainder) { remainder = default(System.Numerics.BigInteger); throw null; }
EqualsSystem.Numerics.BigInteger58         public bool Equals(long other) { throw null; }
EqualsSystem.Numerics.BigInteger59         public bool Equals(System.Numerics.BigInteger other) { throw null; }
EqualsSystem.Numerics.BigInteger60         public override bool Equals(object obj) { throw null; }
61         [System.CLSCompliantAttribute(false)]
EqualsSystem.Numerics.BigInteger62         public bool Equals(ulong other) { throw null; }
GetHashCodeSystem.Numerics.BigInteger63         public override int GetHashCode() { throw null; }
GreatestCommonDivisorSystem.Numerics.BigInteger64         public static System.Numerics.BigInteger GreatestCommonDivisor(System.Numerics.BigInteger left, System.Numerics.BigInteger right) { throw null; }
LogSystem.Numerics.BigInteger65         public static double Log(System.Numerics.BigInteger value) { throw null; }
LogSystem.Numerics.BigInteger66         public static double Log(System.Numerics.BigInteger value, double baseValue) { throw null; }
Log10System.Numerics.BigInteger67         public static double Log10(System.Numerics.BigInteger value) { throw null; }
MaxSystem.Numerics.BigInteger68         public static System.Numerics.BigInteger Max(System.Numerics.BigInteger left, System.Numerics.BigInteger right) { throw null; }
MinSystem.Numerics.BigInteger69         public static System.Numerics.BigInteger Min(System.Numerics.BigInteger left, System.Numerics.BigInteger right) { throw null; }
ModPowSystem.Numerics.BigInteger70         public static System.Numerics.BigInteger ModPow(System.Numerics.BigInteger value, System.Numerics.BigInteger exponent, System.Numerics.BigInteger modulus) { throw null; }
MultiplySystem.Numerics.BigInteger71         public static System.Numerics.BigInteger Multiply(System.Numerics.BigInteger left, System.Numerics.BigInteger right) { throw null; }
NegateSystem.Numerics.BigInteger72         public static System.Numerics.BigInteger Negate(System.Numerics.BigInteger value) { throw null; }
operator +System.Numerics.BigInteger73         public static System.Numerics.BigInteger operator +(System.Numerics.BigInteger left, System.Numerics.BigInteger right) { throw null; }
operator &System.Numerics.BigInteger74         public static System.Numerics.BigInteger operator &(System.Numerics.BigInteger left, System.Numerics.BigInteger right) { throw null; }
operator |System.Numerics.BigInteger75         public static System.Numerics.BigInteger operator |(System.Numerics.BigInteger left, System.Numerics.BigInteger right) { throw null; }
operator --System.Numerics.BigInteger76         public static System.Numerics.BigInteger operator --(System.Numerics.BigInteger value) { throw null; }
operator /System.Numerics.BigInteger77         public static System.Numerics.BigInteger operator /(System.Numerics.BigInteger dividend, System.Numerics.BigInteger divisor) { throw null; }
operator ==System.Numerics.BigInteger78         public static bool operator ==(long left, System.Numerics.BigInteger right) { throw null; }
operator ==System.Numerics.BigInteger79         public static bool operator ==(System.Numerics.BigInteger left, long right) { throw null; }
operator ==System.Numerics.BigInteger80         public static bool operator ==(System.Numerics.BigInteger left, System.Numerics.BigInteger right) { throw null; }
81         [System.CLSCompliantAttribute(false)]
operator ==System.Numerics.BigInteger82         public static bool operator ==(System.Numerics.BigInteger left, ulong right) { throw null; }
83         [System.CLSCompliantAttribute(false)]
operator ==System.Numerics.BigInteger84         public static bool operator ==(ulong left, System.Numerics.BigInteger right) { throw null; }
operator ^System.Numerics.BigInteger85         public static System.Numerics.BigInteger operator ^(System.Numerics.BigInteger left, System.Numerics.BigInteger right) { throw null; }
operator System.Numerics.BigIntegerSystem.Numerics.BigInteger86         public static explicit operator System.Numerics.BigInteger (decimal value) { throw null; }
operator System.Numerics.BigIntegerSystem.Numerics.BigInteger87         public static explicit operator System.Numerics.BigInteger (double value) { throw null; }
operator byteSystem.Numerics.BigInteger88         public static explicit operator byte (System.Numerics.BigInteger value) { throw null; }
operator decimalSystem.Numerics.BigInteger89         public static explicit operator decimal (System.Numerics.BigInteger value) { throw null; }
operator doubleSystem.Numerics.BigInteger90         public static explicit operator double (System.Numerics.BigInteger value) { throw null; }
operator shortSystem.Numerics.BigInteger91         public static explicit operator short (System.Numerics.BigInteger value) { throw null; }
operator intSystem.Numerics.BigInteger92         public static explicit operator int (System.Numerics.BigInteger value) { throw null; }
operator longSystem.Numerics.BigInteger93         public static explicit operator long (System.Numerics.BigInteger value) { throw null; }
94         [System.CLSCompliantAttribute(false)]
operator sbyteSystem.Numerics.BigInteger95         public static explicit operator sbyte (System.Numerics.BigInteger value) { throw null; }
operator floatSystem.Numerics.BigInteger96         public static explicit operator float (System.Numerics.BigInteger value) { throw null; }
97         [System.CLSCompliantAttribute(false)]
operator ushortSystem.Numerics.BigInteger98         public static explicit operator ushort (System.Numerics.BigInteger value) { throw null; }
99         [System.CLSCompliantAttribute(false)]
operator uintSystem.Numerics.BigInteger100         public static explicit operator uint (System.Numerics.BigInteger value) { throw null; }
101         [System.CLSCompliantAttribute(false)]
operator ulongSystem.Numerics.BigInteger102         public static explicit operator ulong (System.Numerics.BigInteger value) { throw null; }
operator System.Numerics.BigIntegerSystem.Numerics.BigInteger103         public static explicit operator System.Numerics.BigInteger (float value) { throw null; }
operator >System.Numerics.BigInteger104         public static bool operator >(long left, System.Numerics.BigInteger right) { throw null; }
operator >System.Numerics.BigInteger105         public static bool operator >(System.Numerics.BigInteger left, long right) { throw null; }
operator >System.Numerics.BigInteger106         public static bool operator >(System.Numerics.BigInteger left, System.Numerics.BigInteger right) { throw null; }
107         [System.CLSCompliantAttribute(false)]
operator >System.Numerics.BigInteger108         public static bool operator >(System.Numerics.BigInteger left, ulong right) { throw null; }
109         [System.CLSCompliantAttribute(false)]
operator >System.Numerics.BigInteger110         public static bool operator >(ulong left, System.Numerics.BigInteger right) { throw null; }
operator >=System.Numerics.BigInteger111         public static bool operator >=(long left, System.Numerics.BigInteger right) { throw null; }
operator >=System.Numerics.BigInteger112         public static bool operator >=(System.Numerics.BigInteger left, long right) { throw null; }
operator >=System.Numerics.BigInteger113         public static bool operator >=(System.Numerics.BigInteger left, System.Numerics.BigInteger right) { throw null; }
114         [System.CLSCompliantAttribute(false)]
operator >=System.Numerics.BigInteger115         public static bool operator >=(System.Numerics.BigInteger left, ulong right) { throw null; }
116         [System.CLSCompliantAttribute(false)]
operator >=System.Numerics.BigInteger117         public static bool operator >=(ulong left, System.Numerics.BigInteger right) { throw null; }
operator System.Numerics.BigIntegerSystem.Numerics.BigInteger118         public static implicit operator System.Numerics.BigInteger (byte value) { throw null; }
operator System.Numerics.BigIntegerSystem.Numerics.BigInteger119         public static implicit operator System.Numerics.BigInteger (short value) { throw null; }
operator System.Numerics.BigIntegerSystem.Numerics.BigInteger120         public static implicit operator System.Numerics.BigInteger (int value) { throw null; }
operator System.Numerics.BigIntegerSystem.Numerics.BigInteger121         public static implicit operator System.Numerics.BigInteger (long value) { throw null; }
122         [System.CLSCompliantAttribute(false)]
operator System.Numerics.BigIntegerSystem.Numerics.BigInteger123         public static implicit operator System.Numerics.BigInteger (sbyte value) { throw null; }
124         [System.CLSCompliantAttribute(false)]
operator System.Numerics.BigIntegerSystem.Numerics.BigInteger125         public static implicit operator System.Numerics.BigInteger (ushort value) { throw null; }
126         [System.CLSCompliantAttribute(false)]
operator System.Numerics.BigIntegerSystem.Numerics.BigInteger127         public static implicit operator System.Numerics.BigInteger (uint value) { throw null; }
128         [System.CLSCompliantAttribute(false)]
operator System.Numerics.BigIntegerSystem.Numerics.BigInteger129         public static implicit operator System.Numerics.BigInteger (ulong value) { throw null; }
operator ++System.Numerics.BigInteger130         public static System.Numerics.BigInteger operator ++(System.Numerics.BigInteger value) { throw null; }
operator !=System.Numerics.BigInteger131         public static bool operator !=(long left, System.Numerics.BigInteger right) { throw null; }
operator !=System.Numerics.BigInteger132         public static bool operator !=(System.Numerics.BigInteger left, long right) { throw null; }
operator !=System.Numerics.BigInteger133         public static bool operator !=(System.Numerics.BigInteger left, System.Numerics.BigInteger right) { throw null; }
134         [System.CLSCompliantAttribute(false)]
operator !=System.Numerics.BigInteger135         public static bool operator !=(System.Numerics.BigInteger left, ulong right) { throw null; }
136         [System.CLSCompliantAttribute(false)]
operator !=System.Numerics.BigInteger137         public static bool operator !=(ulong left, System.Numerics.BigInteger right) { throw null; }
operator <<System.Numerics.BigInteger138         public static System.Numerics.BigInteger operator <<(System.Numerics.BigInteger value, int shift) { throw null; }
operator <System.Numerics.BigInteger139         public static bool operator <(long left, System.Numerics.BigInteger right) { throw null; }
operator <System.Numerics.BigInteger140         public static bool operator <(System.Numerics.BigInteger left, long right) { throw null; }
operator <System.Numerics.BigInteger141         public static bool operator <(System.Numerics.BigInteger left, System.Numerics.BigInteger right) { throw null; }
142         [System.CLSCompliantAttribute(false)]
operator <System.Numerics.BigInteger143         public static bool operator <(System.Numerics.BigInteger left, ulong right) { throw null; }
144         [System.CLSCompliantAttribute(false)]
operator <System.Numerics.BigInteger145         public static bool operator <(ulong left, System.Numerics.BigInteger right) { throw null; }
operator <=System.Numerics.BigInteger146         public static bool operator <=(long left, System.Numerics.BigInteger right) { throw null; }
operator <=System.Numerics.BigInteger147         public static bool operator <=(System.Numerics.BigInteger left, long right) { throw null; }
operator <=System.Numerics.BigInteger148         public static bool operator <=(System.Numerics.BigInteger left, System.Numerics.BigInteger right) { throw null; }
149         [System.CLSCompliantAttribute(false)]
operator <=System.Numerics.BigInteger150         public static bool operator <=(System.Numerics.BigInteger left, ulong right) { throw null; }
151         [System.CLSCompliantAttribute(false)]
operator <=System.Numerics.BigInteger152         public static bool operator <=(ulong left, System.Numerics.BigInteger right) { throw null; }
operator %System.Numerics.BigInteger153         public static System.Numerics.BigInteger operator %(System.Numerics.BigInteger dividend, System.Numerics.BigInteger divisor) { throw null; }
operator *System.Numerics.BigInteger154         public static System.Numerics.BigInteger operator *(System.Numerics.BigInteger left, System.Numerics.BigInteger right) { throw null; }
operator ~System.Numerics.BigInteger155         public static System.Numerics.BigInteger operator ~(System.Numerics.BigInteger value) { throw null; }
operator >>System.Numerics.BigInteger156         public static System.Numerics.BigInteger operator >>(System.Numerics.BigInteger value, int shift) { throw null; }
operator -System.Numerics.BigInteger157         public static System.Numerics.BigInteger operator -(System.Numerics.BigInteger left, System.Numerics.BigInteger right) { throw null; }
operator -System.Numerics.BigInteger158         public static System.Numerics.BigInteger operator -(System.Numerics.BigInteger value) { throw null; }
operator +System.Numerics.BigInteger159         public static System.Numerics.BigInteger operator +(System.Numerics.BigInteger value) { throw null; }
ParseSystem.Numerics.BigInteger160         public static System.Numerics.BigInteger Parse(string value) { throw null; }
ParseSystem.Numerics.BigInteger161         public static System.Numerics.BigInteger Parse(string value, System.Globalization.NumberStyles style) { throw null; }
ParseSystem.Numerics.BigInteger162         public static System.Numerics.BigInteger Parse(string value, System.Globalization.NumberStyles style, System.IFormatProvider provider) { throw null; }
ParseSystem.Numerics.BigInteger163         public static System.Numerics.BigInteger Parse(string value, System.IFormatProvider provider) { throw null; }
PowSystem.Numerics.BigInteger164         public static System.Numerics.BigInteger Pow(System.Numerics.BigInteger value, int exponent) { throw null; }
RemainderSystem.Numerics.BigInteger165         public static System.Numerics.BigInteger Remainder(System.Numerics.BigInteger dividend, System.Numerics.BigInteger divisor) { throw null; }
SubtractSystem.Numerics.BigInteger166         public static System.Numerics.BigInteger Subtract(System.Numerics.BigInteger left, System.Numerics.BigInteger right) { throw null; }
ToByteArraySystem.Numerics.BigInteger167         public byte[] ToByteArray() { throw null; }
ToStringSystem.Numerics.BigInteger168         public override string ToString() { throw null; }
ToStringSystem.Numerics.BigInteger169         public string ToString(System.IFormatProvider provider) { throw null; }
ToStringSystem.Numerics.BigInteger170         public string ToString(string format) { throw null; }
ToStringSystem.Numerics.BigInteger171         public string ToString(string format, System.IFormatProvider provider) { throw null; }
TryParseSystem.Numerics.BigInteger172         public static bool TryParse(string value, System.Globalization.NumberStyles style, System.IFormatProvider provider, out System.Numerics.BigInteger result) { result = default(System.Numerics.BigInteger); throw null; }
TryParseSystem.Numerics.BigInteger173         public static bool TryParse(string value, out System.Numerics.BigInteger result) { result = default(System.Numerics.BigInteger); throw null; }
174     }
175     [System.SerializableAttribute]
176     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
177     public partial struct Complex : System.IEquatable<System.Numerics.Complex>, System.IFormattable
178     {
179         public static readonly System.Numerics.Complex ImaginaryOne;
180         public static readonly System.Numerics.Complex One;
181         public static readonly System.Numerics.Complex Zero;
ComplexSystem.Numerics.Complex182         public Complex(double real, double imaginary) { throw null;}
183         public double Imaginary { get { throw null; } }
184         public double Magnitude { get { throw null; } }
185         public double Phase { get { throw null; } }
186         public double Real { get { throw null; } }
AbsSystem.Numerics.Complex187         public static double Abs(System.Numerics.Complex value) { throw null; }
AcosSystem.Numerics.Complex188         public static System.Numerics.Complex Acos(System.Numerics.Complex value) { throw null; }
AddSystem.Numerics.Complex189         public static System.Numerics.Complex Add(System.Numerics.Complex left, System.Numerics.Complex right) { throw null; }
AsinSystem.Numerics.Complex190         public static System.Numerics.Complex Asin(System.Numerics.Complex value) { throw null; }
AtanSystem.Numerics.Complex191         public static System.Numerics.Complex Atan(System.Numerics.Complex value) { throw null; }
ConjugateSystem.Numerics.Complex192         public static System.Numerics.Complex Conjugate(System.Numerics.Complex value) { throw null; }
CosSystem.Numerics.Complex193         public static System.Numerics.Complex Cos(System.Numerics.Complex value) { throw null; }
CoshSystem.Numerics.Complex194         public static System.Numerics.Complex Cosh(System.Numerics.Complex value) { throw null; }
DivideSystem.Numerics.Complex195         public static System.Numerics.Complex Divide(System.Numerics.Complex dividend, System.Numerics.Complex divisor) { throw null; }
EqualsSystem.Numerics.Complex196         public bool Equals(System.Numerics.Complex value) { throw null; }
EqualsSystem.Numerics.Complex197         public override bool Equals(object obj) { throw null; }
ExpSystem.Numerics.Complex198         public static System.Numerics.Complex Exp(System.Numerics.Complex value) { throw null; }
FromPolarCoordinatesSystem.Numerics.Complex199         public static System.Numerics.Complex FromPolarCoordinates(double magnitude, double phase) { throw null; }
GetHashCodeSystem.Numerics.Complex200         public override int GetHashCode() { throw null; }
LogSystem.Numerics.Complex201         public static System.Numerics.Complex Log(System.Numerics.Complex value) { throw null; }
LogSystem.Numerics.Complex202         public static System.Numerics.Complex Log(System.Numerics.Complex value, double baseValue) { throw null; }
Log10System.Numerics.Complex203         public static System.Numerics.Complex Log10(System.Numerics.Complex value) { throw null; }
MultiplySystem.Numerics.Complex204         public static System.Numerics.Complex Multiply(System.Numerics.Complex left, System.Numerics.Complex right) { throw null; }
NegateSystem.Numerics.Complex205         public static System.Numerics.Complex Negate(System.Numerics.Complex value) { throw null; }
operator +System.Numerics.Complex206         public static System.Numerics.Complex operator +(System.Numerics.Complex left, System.Numerics.Complex right) { throw null; }
operator /System.Numerics.Complex207         public static System.Numerics.Complex operator /(System.Numerics.Complex left, System.Numerics.Complex right) { throw null; }
operator ==System.Numerics.Complex208         public static bool operator ==(System.Numerics.Complex left, System.Numerics.Complex right) { throw null; }
operator System.Numerics.ComplexSystem.Numerics.Complex209         public static explicit operator System.Numerics.Complex (decimal value) { throw null; }
operator System.Numerics.ComplexSystem.Numerics.Complex210         public static explicit operator System.Numerics.Complex (System.Numerics.BigInteger value) { throw null; }
operator System.Numerics.ComplexSystem.Numerics.Complex211         public static implicit operator System.Numerics.Complex (byte value) { throw null; }
operator System.Numerics.ComplexSystem.Numerics.Complex212         public static implicit operator System.Numerics.Complex (double value) { throw null; }
operator System.Numerics.ComplexSystem.Numerics.Complex213         public static implicit operator System.Numerics.Complex (short value) { throw null; }
operator System.Numerics.ComplexSystem.Numerics.Complex214         public static implicit operator System.Numerics.Complex (int value) { throw null; }
operator System.Numerics.ComplexSystem.Numerics.Complex215         public static implicit operator System.Numerics.Complex (long value) { throw null; }
216         [System.CLSCompliantAttribute(false)]
operator System.Numerics.ComplexSystem.Numerics.Complex217         public static implicit operator System.Numerics.Complex (sbyte value) { throw null; }
operator System.Numerics.ComplexSystem.Numerics.Complex218         public static implicit operator System.Numerics.Complex (float value) { throw null; }
219         [System.CLSCompliantAttribute(false)]
operator System.Numerics.ComplexSystem.Numerics.Complex220         public static implicit operator System.Numerics.Complex (ushort value) { throw null; }
221         [System.CLSCompliantAttribute(false)]
operator System.Numerics.ComplexSystem.Numerics.Complex222         public static implicit operator System.Numerics.Complex (uint value) { throw null; }
223         [System.CLSCompliantAttribute(false)]
operator System.Numerics.ComplexSystem.Numerics.Complex224         public static implicit operator System.Numerics.Complex (ulong value) { throw null; }
operator !=System.Numerics.Complex225         public static bool operator !=(System.Numerics.Complex left, System.Numerics.Complex right) { throw null; }
operator *System.Numerics.Complex226         public static System.Numerics.Complex operator *(System.Numerics.Complex left, System.Numerics.Complex right) { throw null; }
operator -System.Numerics.Complex227         public static System.Numerics.Complex operator -(System.Numerics.Complex left, System.Numerics.Complex right) { throw null; }
operator -System.Numerics.Complex228         public static System.Numerics.Complex operator -(System.Numerics.Complex value) { throw null; }
PowSystem.Numerics.Complex229         public static System.Numerics.Complex Pow(System.Numerics.Complex value, double power) { throw null; }
PowSystem.Numerics.Complex230         public static System.Numerics.Complex Pow(System.Numerics.Complex value, System.Numerics.Complex power) { throw null; }
ReciprocalSystem.Numerics.Complex231         public static System.Numerics.Complex Reciprocal(System.Numerics.Complex value) { throw null; }
SinSystem.Numerics.Complex232         public static System.Numerics.Complex Sin(System.Numerics.Complex value) { throw null; }
SinhSystem.Numerics.Complex233         public static System.Numerics.Complex Sinh(System.Numerics.Complex value) { throw null; }
SqrtSystem.Numerics.Complex234         public static System.Numerics.Complex Sqrt(System.Numerics.Complex value) { throw null; }
SubtractSystem.Numerics.Complex235         public static System.Numerics.Complex Subtract(System.Numerics.Complex left, System.Numerics.Complex right) { throw null; }
TanSystem.Numerics.Complex236         public static System.Numerics.Complex Tan(System.Numerics.Complex value) { throw null; }
TanhSystem.Numerics.Complex237         public static System.Numerics.Complex Tanh(System.Numerics.Complex value) { throw null; }
ToStringSystem.Numerics.Complex238         public override string ToString() { throw null; }
ToStringSystem.Numerics.Complex239         public string ToString(System.IFormatProvider provider) { throw null; }
ToStringSystem.Numerics.Complex240         public string ToString(string format) { throw null; }
ToStringSystem.Numerics.Complex241         public string ToString(string format, System.IFormatProvider provider) { throw null; }
242     }
243 }
244