Skip to content

Instantly share code, notes, and snippets.

View mamesiva64's full-sized avatar

sushi-san mamesiva64

View GitHub Profile
@mamesiva64
mamesiva64 / OpenSaveDataFolder.cs
Created April 27, 2018 10:02
OpenSaveData(persistentDataPath)Folder
using UnityEngine;
using UnityEditor;
using System.Collections;
public class OpenSaveDataFolder
{
[MenuItem("SaveData/OpenPersistentDataPath")]
static void OpenPersistentDataPath()
{
System.Diagnostics.Process.Start(Application.persistentDataPath);
@mamesiva64
mamesiva64 / CsvFileSample.cs
Last active March 12, 2018 09:37
CsvFileSample
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CsvTest
{
class Program
{
@mamesiva64
mamesiva64 / CsvFile.cs
Last active January 18, 2023 02:36
CsvFile
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Diagnostics;
using System.IO;
using Microsoft.VisualBasic.FileIO;