Table of Contents

Struct NpgsqlLine

Namespace
NpgsqlTypes
Assembly
Npgsql.dll

Represents a PostgreSQL line type.

public struct NpgsqlLine : IEquatable<NpgsqlLine>
Implements
Inherited Members

Remarks

Constructors

NpgsqlLine(double, double, double)

public NpgsqlLine(double a, double b, double c)

Parameters

a double
b double
c double

Properties

A

public double A { readonly get; set; }

Property Value

double

B

public double B { readonly get; set; }

Property Value

double

C

public double C { readonly get; set; }

Property Value

double

Methods

Equals(NpgsqlLine)

public bool Equals(NpgsqlLine other)

Parameters

other NpgsqlLine

Returns

bool

Equals(object)

public override bool Equals(object obj)

Parameters

obj object

Returns

bool

GetHashCode()

public override int GetHashCode()

Returns

int

Parse(string)

public static NpgsqlLine Parse(string s)

Parameters

s string

Returns

NpgsqlLine

ToString()

public override string ToString()

Returns

string

Operators

operator ==(NpgsqlLine, NpgsqlLine)

public static bool operator ==(NpgsqlLine x, NpgsqlLine y)

Parameters

x NpgsqlLine
y NpgsqlLine

Returns

bool

operator !=(NpgsqlLine, NpgsqlLine)

public static bool operator !=(NpgsqlLine x, NpgsqlLine y)

Parameters

x NpgsqlLine
y NpgsqlLine

Returns

bool