You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb none #jira none #lockdown cristina.riveron [CL 9230097 by Simon Tourangeau in 4.23 branch]
16 lines
373 B
C#
16 lines
373 B
C#
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
|
using System;
|
|
|
|
namespace nDisplayLauncher.Helpers
|
|
{
|
|
// String helpers
|
|
public static class StringHelper
|
|
{
|
|
// Extended version of string.Contains with case checking
|
|
public static bool Contains(string Source, string ToCheck, StringComparison Comp)
|
|
{
|
|
return Source?.IndexOf(ToCheck, Comp) >= 0;
|
|
}
|
|
}
|
|
}
|