Browse Source

Generic Type Typo

Usagirei 6 năm trước cách đây
mục cha
commit
2ab00deeb8
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      BepInEx/ConfigWrapper.cs

+ 1 - 1
BepInEx/ConfigWrapper.cs

@@ -5,7 +5,7 @@ namespace BepInEx
 {
     public interface IConfigConverter<T>
     {
-        string ConvertToString<T>(T value);
+        string ConvertToString(T value);
         T ConvertFromString(string str);
     }