GenerateRandomString
(
size
, includeLowercase
, includeUppercase
, includeNumeric
, includeSpecial
)
|
Signature
static string GenerateRandomString(int size, bool includeLowercase=true, bool includeUppercase=true, bool includeNumeric=true, bool includeSpecial=false) Parameters size: intincludeLowercase: boolincludeUppercase: boolincludeNumeric: boolincludeSpecial: boolReturns string |
GetInterfaceComponent< T >
(
monoBehaviour
)
|
Returns the first (order not guaranteed) instance of a MonoBehaviour implementing the interface T.
Signature
static T GetInterfaceComponent< T >(this MonoBehaviour monoBehaviour) Parameters monoBehaviour: this MonoBehaviour
MonoBehaviour instance, as caller, on whose GameObject the search will occur.
Returns T
The first instance of T found.
|