Table of Contents

Class SourceCodeFile

Namespace
LinqToDB.Scaffold
Assembly
linq2db.Tools.dll

Single-file source code with file name.

public record SourceCodeFile : IEquatable<SourceCodeFile>
Inheritance
SourceCodeFile
Implements
Extension Methods

Constructors

SourceCodeFile(string, string)

Single-file source code with file name.

public SourceCodeFile(string FileName, string Code)

Parameters

FileName string

File name (with extension; without path).

Code string

Source code.

Properties

Code

Source code.

public string Code { get; init; }

Property Value

string

FileName

File name (with extension; without path).

public string FileName { get; init; }

Property Value

string