CodeSmile AssetDatabase 1.9
Unity's AssetDatabase in enjoyable, consistent, concise, convenient, comprehensible, safe, documented form.
Loading...
Searching...
No Matches
StringExtensions.cs
1// Copyright (C) 2021-2023 Steffen Itterheim
2// Refer to included LICENSE file for terms and conditions.
3
4using System;
5
6namespace CodeSmileEditor
7{
11 internal static class StringExtensions
12 {
22 internal static String ToForwardSlashes(this String path) => path.Replace('\\', '/');
23 }
24}