Esempio n. 1
0
    public static string smethod_3(string string_0, string string_1, string string_2, string string_3)
    {
        string text = Strings.Space(1024);
        long   num  = (long)Class6.GetPrivateProfileStringW(ref string_1, ref string_2, ref string_3, ref text, Strings.Len(text), ref string_0);
        string result;

        if (num > 0L)
        {
            result = Strings.Left(text, checked ((int)num));
        }
        else
        {
            result = "0";
        }
        return(result);
    }