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
@@ -1,7 +1,7 @@
using System;
using BenchmarkDotNet.Attributes;

namespace Light.GuardClauses.Performance.StringAssertions
namespace Light.GuardClauses.FrameworkExtensions.Performance.StringAssertions
{
public class ContainsOrdinalBenchmark
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
using JetBrains.Annotations;
using NotNullAttribute = System.Diagnostics.CodeAnalysis.NotNullAttribute;

namespace Light.GuardClauses;
namespace Light.GuardClauses.FrameworkExtensions;

public static partial class Check
public static partial class StringExtensions
{
/// <summary>
/// Checks if the string contains the specified value using the given comparison type.
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
namespace Light.GuardClauses.FrameworkExtensions;

/// <summary>
/// Provides extension methods for the <see cref="string" /> class.
/// </summary>
// ReSharper disable once RedundantTypeDeclarationBody -- required for Source Code Transformation
public static partial class StringExtensions { }