Sdílet prostřednictvím


ICSharpHelper.Literal Metoda

Definice

Přetížení

Literal(BigInteger)

Vygeneruje literál BigInteger.

Literal(Type, Nullable<Boolean>)

Vygeneruje Type literál.

Literal(Enum, Boolean)

Vygeneruje výčtový literál.

Literal(IReadOnlyList<Object>, Boolean)

Vygeneruje literál pole objektů.

Literal(UInt64)

Vygeneruje literál ulong.

Literal(UInt32)

Vygeneruje literál uint.

Literal(UInt16)

Vygeneruje ushort literál.

Literal(TimeSpan)

Vygeneruje literál TimeSpan.

Literal(TimeOnly)

Vygeneruje literál TimeOnly.

Literal(String)

Vygeneruje řetězcový literál.

Literal(Single)

Vygeneruje literál float.

Literal(SByte)

Vygeneruje sbajtový literál.

Literal(Object[,])

Vygeneruje multidimenzionální maticový literál.

Literal(Int64)

Vygeneruje dlouhý literál.

Literal(Guid)

Vygeneruje literál Guid.

Literal(Int16)

Vygeneruje krátký literál.

Literal(Boolean)

Vygeneruje logický literál.

Literal(Int32)

Vygeneruje int literál.

Literal(Byte[])

Vygeneruje literál pole bajtů.

Literal(Char)

Vygeneruje literál znaku.

Literal(IReadOnlyList<Object>)

Vygeneruje literál pole objektů.

Literal(DateOnly)

Vygeneruje literál DateOnly.

Literal(Byte)

Vygeneruje bajtový literál.

Literal(DateTimeOffset)

Vygeneruje literál DateTimeOffset.

Literal(Decimal)

Vygeneruje desetinný literál.

Literal(Double)

Vygeneruje dvojitý literál.

Literal(Enum)

Vygeneruje výčtový literál.

Literal(DateTime)

Vygeneruje literál DateTime.

Literal<T>(IReadOnlyList<T>)

Vygeneruje maticový literál.

Literal<T>(Nullable<T>)

Vygeneruje literál s možnou hodnotou null.

Literal<T>(List<T>, Boolean)

Vygeneruje literál seznamu.

Literal<T>(T[], Boolean)

Vygeneruje literál pole objektů.

Literal<TKey,TValue>(Dictionary<TKey,TValue>, Boolean)

Vygeneruje slovníkový literál.

Literal(BigInteger)

Vygeneruje literál BigInteger.

public string Literal (System.Numerics.BigInteger value);
abstract member Literal : System.Numerics.BigInteger -> string
Public Function Literal (value As BigInteger) As String

Parametry

value
BigInteger

Hodnota

Návraty

Literál.

Platí pro

Literal(Type, Nullable<Boolean>)

Vygeneruje Type literál.

public string Literal (Type value, bool? fullName = default);
abstract member Literal : Type * Nullable<bool> -> string
Public Function Literal (value As Type, Optional fullName As Nullable(Of Boolean) = Nothing) As String

Parametry

value
Type

Hodnota

fullName
Nullable<Boolean>

Určuje, jestli má být typ kvalifikovaný pro obor názvů.

Návraty

Literál.

Platí pro

Literal(Enum, Boolean)

Vygeneruje výčtový literál.

public string Literal (Enum value, bool fullName = false);
abstract member Literal : Enum * bool -> string
Public Function Literal (value As Enum, Optional fullName As Boolean = false) As String

Parametry

value
Enum

Hodnota

fullName
Boolean

Určuje, jestli má být typ kvalifikovaný pro obor názvů.

Návraty

Literál.

Platí pro

Literal(IReadOnlyList<Object>, Boolean)

Vygeneruje literál pole objektů.

public string Literal (System.Collections.Generic.IReadOnlyList<object> values, bool vertical);
abstract member Literal : System.Collections.Generic.IReadOnlyList<obj> * bool -> string
Public Function Literal (values As IReadOnlyList(Of Object), vertical As Boolean) As String

Parametry

values
IReadOnlyList<Object>

Pole objektů.

vertical
Boolean

Hodnota označující, zda se má literál rozmístit svisle.

Návraty

Literál.

Platí pro

Literal(UInt64)

Vygeneruje literál ulong.

public string Literal (ulong value);
abstract member Literal : uint64 -> string
Public Function Literal (value As ULong) As String

Parametry

value
UInt64

Hodnota

Návraty

Literál.

Platí pro

Literal(UInt32)

Vygeneruje literál uint.

public string Literal (uint value);
abstract member Literal : uint32 -> string
Public Function Literal (value As UInteger) As String

Parametry

value
UInt32

Hodnota

Návraty

Literál.

Platí pro

Literal(UInt16)

Vygeneruje ushort literál.

public string Literal (ushort value);
abstract member Literal : uint16 -> string
Public Function Literal (value As UShort) As String

Parametry

value
UInt16

Hodnota

Návraty

Literál.

Platí pro

Literal(TimeSpan)

Vygeneruje literál TimeSpan.

public string Literal (TimeSpan value);
abstract member Literal : TimeSpan -> string
Public Function Literal (value As TimeSpan) As String

Parametry

value
TimeSpan

Hodnota

Návraty

Literál.

Platí pro

Literal(TimeOnly)

Vygeneruje literál TimeOnly.

public string Literal (TimeOnly value);
abstract member Literal : TimeOnly -> string
Public Function Literal (value As TimeOnly) As String

Parametry

value
TimeOnly

Hodnota

Návraty

Literál.

Platí pro

Literal(String)

Vygeneruje řetězcový literál.

public string Literal (string value);
public string Literal (string? value);
abstract member Literal : string -> string
Public Function Literal (value As String) As String

Parametry

value
String

Hodnota

Návraty

Literál.

Platí pro

Literal(Single)

Vygeneruje literál float.

public string Literal (float value);
abstract member Literal : single -> string
Public Function Literal (value As Single) As String

Parametry

value
Single

Hodnota

Návraty

Literál.

Platí pro

Literal(SByte)

Vygeneruje literál sby.

public string Literal (sbyte value);
abstract member Literal : sbyte -> string
Public Function Literal (value As SByte) As String

Parametry

value
SByte

Hodnota

Návraty

Literál.

Platí pro

Literal(Object[,])

Vygeneruje literál multidimenzionálního pole.

public string Literal (object[,] values);
public string Literal (object?[,] values);
abstract member Literal : obj[,] -> string
Public Function Literal (values As Object(,)) As String

Parametry

values
Object[,]

Multidimenzionální pole.

Návraty

Literál.

Platí pro

Literal(Int64)

Vygeneruje dlouhý literál.

public string Literal (long value);
abstract member Literal : int64 -> string
Public Function Literal (value As Long) As String

Parametry

value
Int64

Hodnota

Návraty

Literál.

Platí pro

Literal(Guid)

Vygeneruje literál GUID.

public string Literal (Guid value);
abstract member Literal : Guid -> string
Public Function Literal (value As Guid) As String

Parametry

value
Guid

Hodnota

Návraty

Literál.

Platí pro

Literal(Int16)

Vygeneruje krátký literál.

public string Literal (short value);
abstract member Literal : int16 -> string
Public Function Literal (value As Short) As String

Parametry

value
Int16

Hodnota

Návraty

Literál.

Platí pro

Literal(Boolean)

Vygeneruje logický literál.

public string Literal (bool value);
abstract member Literal : bool -> string
Public Function Literal (value As Boolean) As String

Parametry

value
Boolean

Hodnota

Návraty

Literál.

Platí pro

Literal(Int32)

Vygeneruje literál int.

public string Literal (int value);
abstract member Literal : int -> string
Public Function Literal (value As Integer) As String

Parametry

value
Int32

Hodnota

Návraty

Literál.

Platí pro

Literal(Byte[])

Generuje literál pole bajtů.

public string Literal (byte[] values);
abstract member Literal : byte[] -> string
Public Function Literal (values As Byte()) As String

Parametry

values
Byte[]

Pole bajtů.

Návraty

Literál.

Platí pro

Literal(Char)

Vygeneruje literál typu char.

public string Literal (char value);
abstract member Literal : char -> string
Public Function Literal (value As Char) As String

Parametry

value
Char

Hodnota

Návraty

Literál.

Platí pro

Literal(IReadOnlyList<Object>)

Generuje literál pole objektu.

public string Literal (System.Collections.Generic.IReadOnlyList<object> values);
abstract member Literal : System.Collections.Generic.IReadOnlyList<obj> -> string
Public Function Literal (values As IReadOnlyList(Of Object)) As String

Parametry

values
IReadOnlyList<Object>

Pole objektů.

Návraty

Literál.

Platí pro

Literal(DateOnly)

Vygeneruje literál DateOnly.

public string Literal (DateOnly value);
abstract member Literal : DateOnly -> string
Public Function Literal (value As DateOnly) As String

Parametry

value
DateOnly

Hodnota

Návraty

Literál.

Platí pro

Literal(Byte)

Vygeneruje bajtový literál.

public string Literal (byte value);
abstract member Literal : byte -> string
Public Function Literal (value As Byte) As String

Parametry

value
Byte

Hodnota

Návraty

Literál.

Platí pro

Literal(DateTimeOffset)

Vygeneruje literál DateTimeOffset.

public string Literal (DateTimeOffset value);
abstract member Literal : DateTimeOffset -> string
Public Function Literal (value As DateTimeOffset) As String

Parametry

value
DateTimeOffset

Hodnota

Návraty

Literál.

Platí pro

Literal(Decimal)

Vygeneruje desetinný literál.

public string Literal (decimal value);
abstract member Literal : decimal -> string
Public Function Literal (value As Decimal) As String

Parametry

value
Decimal

Hodnota

Návraty

Literál.

Platí pro

Literal(Double)

Vygeneruje dvojitý literál.

public string Literal (double value);
abstract member Literal : double -> string
Public Function Literal (value As Double) As String

Parametry

value
Double

Hodnota

Návraty

Literál.

Platí pro

Literal(Enum)

Vygeneruje výčtový literál.

public string Literal (Enum value);
abstract member Literal : Enum -> string
Public Function Literal (value As Enum) As String

Parametry

value
Enum

Hodnota

Návraty

Literál.

Platí pro

Literal(DateTime)

Vygeneruje literál DateTime.

public string Literal (DateTime value);
abstract member Literal : DateTime -> string
Public Function Literal (value As DateTime) As String

Parametry

value
DateTime

Hodnota

Návraty

Literál.

Platí pro

Literal<T>(IReadOnlyList<T>)

Vygeneruje literál pole.

public string Literal<T> (System.Collections.Generic.IReadOnlyList<T> values);
abstract member Literal : System.Collections.Generic.IReadOnlyList<'T> -> string
Public Function Literal(Of T) (values As IReadOnlyList(Of T)) As String

Parametry typu

T

Typ prvku pole.

Parametry

values
IReadOnlyList<T>

Pole

Návraty

Literál.

Platí pro

Literal<T>(Nullable<T>)

Generuje literál s možnou hodnotou null.

public string Literal<T> (T? value) where T : struct;
abstract member Literal : Nullable<'T (requires 'T : struct)> -> string (requires 'T : struct)
Public Function Literal(Of T As Structure) (value As Nullable(Of T)) As String

Parametry typu

T

Základní typ typu s možnou hodnotou null.

Parametry

value
Nullable<T>

Hodnota s možnou hodnotou null.

Návraty

Literál.

Platí pro

Literal<T>(List<T>, Boolean)

Vygeneruje literál seznamu.

public string Literal<T> (System.Collections.Generic.List<T> values, bool vertical = false);
abstract member Literal : System.Collections.Generic.List<'T> * bool -> string
Public Function Literal(Of T) (values As List(Of T), Optional vertical As Boolean = false) As String

Parametry typu

T

Parametry

values
List<T>

Seznam.

vertical
Boolean

Hodnota označující, zda se má literál rozložit svisle.

Návraty

Literál.

Platí pro

Literal<T>(T[], Boolean)

Generuje literál pole objektu.

public string Literal<T> (T[] values, bool vertical = false);
abstract member Literal : 'T[] * bool -> string
Public Function Literal(Of T) (values As T(), Optional vertical As Boolean = false) As String

Parametry typu

T

Parametry

values
T[]

Pole objektů.

vertical
Boolean

Hodnota označující, zda se má literál rozložit svisle.

Návraty

Literál.

Platí pro

Literal<TKey,TValue>(Dictionary<TKey,TValue>, Boolean)

Vygeneruje slovníkový literál.

public string Literal<TKey,TValue> (System.Collections.Generic.Dictionary<TKey,TValue> values, bool vertical = false);
abstract member Literal : System.Collections.Generic.Dictionary<'Key, 'Value> * bool -> string
Public Function Literal(Of TKey, TValue) (values As Dictionary(Of TKey, TValue), Optional vertical As Boolean = false) As String

Parametry typu

TKey
TValue

Parametry

values
Dictionary<TKey,TValue>

Slovník.

vertical
Boolean

Hodnota označující, zda se má literál rozložit svisle.

Návraty

Literál.

Platí pro