错误CS1503:参数1:无法从“字符串”转换为“ System.IFormatProvider”

时间:2019-01-27 20:30:37

标签: c# unity3d

嗨,有人知道我该如何解决这个问题。试图增加我的游戏水平。 任何人都知道我需要更改代码的哪一部分

protected SyncFieldString syncTitle = new SyncFieldString();

public virtual string Title
{
    get { return title; }
    set
    {
        title = value;
        if (IsServer)
            syncTitle.Value = value;
    }
}

protected SyncFieldString syncLevel = new SyncFieldString();

public virtual string Level
{
    get { return level; }
    set
    {
        level = value;
        if (IsServer)
            syncLevel.Value = value;
    }
}

还有一些我的关卡格式的代码

if (uiTextLevel != null)
    uiTextLevel.text = string.Format(levelFormat, Data == null ? "N/A" : Data.Level.ToString("N0"));

对不起,我是初学者。

0 个答案:

没有答案