Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -853,9 +853,9 @@ protected override void ProcessRecord()
internal class ExportCsvHelper : IDisposable
{
private char _delimiter;
readonly private BaseCsvWritingCommand.QuoteKind _quoteKind;
readonly private HashSet<string> _quoteFields;
readonly private StringBuilder _outputString;
private readonly BaseCsvWritingCommand.QuoteKind _quoteKind;
private readonly HashSet<string> _quoteFields;
private readonly StringBuilder _outputString;

/// <summary>
/// Create ExportCsvHelper instance.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ public sealed class CertificateProvider : NavigationCmdletProvider, ICmdletProvi
/// </summary>
[TraceSource("CertificateProvider",
"The core command provider for certificates")]
private readonly static PSTraceSource s_tracer = PSTraceSource.GetTracer("CertificateProvider",
private static readonly PSTraceSource s_tracer = PSTraceSource.GetTracer("CertificateProvider",
"The core command provider for certificates");

#endregion tracer
Expand Down