Hi,
I have a script with these 2 functions:
1:
public static void DeleteFile(string filename)
{
string fullpath = Application.persistentDataPath + "/" + filename;
...
2:
public static void SaveFile<T>(string filename, T data) where T : class
{
if (IsValidFilename(filename))
{
FileStream file = null;
try
{...
After adding the scripting in the uvs section in project settings, why can I see the first function and not the second?
(ps: this is just an example, I don’t need to save or load anything, I just to want to understand what are the requirements so uvs recognizes a c# function.)
Thanks