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