StringExtensions.ToCamelCase
Declaration#
public static string ToCamelCase(string str)Parameters#
| Name | Description |
|---|---|
| str | Value to convert |
Description#
Convert string to camel case
Usage#
Example
using NullSave.GDTK;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod() { string original = "This Is My Source"; string cc = original.ToCamelCase(); }
}