Struct NpgsqlLine
Represents a PostgreSQL line type.
Assembly: Npgsql.dll
Syntax
public struct NpgsqlLine : IEquatable<NpgsqlLine>
Constructors
|
Improve this Doc
NpgsqlLine(Double, Double, Double)
Declaration
public NpgsqlLine(double a, double b, double c)
Parameters
Properties
|
Improve this Doc
A
Declaration
public double A { readonly get; set; }
Property Value
|
Improve this Doc
B
Declaration
public double B { readonly get; set; }
Property Value
|
Improve this Doc
C
Declaration
public double C { readonly get; set; }
Property Value
Methods
|
Improve this Doc
Equals(NpgsqlLine)
Declaration
public bool Equals(NpgsqlLine other)
Parameters
Returns
|
Improve this Doc
Equals(Object)
Declaration
public override bool Equals(object obj)
Parameters
Type |
Name |
Description |
Object |
obj |
|
Returns
Overrides
|
Improve this Doc
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
|
Improve this Doc
Parse(String)
Declaration
public static NpgsqlLine Parse(string s)
Parameters
Type |
Name |
Description |
String |
s |
|
Returns
|
Improve this Doc
ToString()
Declaration
public override string ToString()
Returns
Overrides
Operators
|
Improve this Doc
Equality(NpgsqlLine, NpgsqlLine)
Declaration
public static bool operator ==(NpgsqlLine x, NpgsqlLine y)
Parameters
Returns
|
Improve this Doc
Inequality(NpgsqlLine, NpgsqlLine)
Declaration
public static bool operator !=(NpgsqlLine x, NpgsqlLine y)
Parameters
Returns
Implements