PlayGamesPlatform.Instance.localUser.Authenticate((bool success)=>
在上面的代码片段中," =>"意思? 我一直无法找到任何关于此
的参考资料答案 0 :(得分:0)
然而,在这种情况下,它并不总是显而易见的,它是制作代码的一部分,而不是
PlayGamesPlatform.Instance.localUser.Authenticate(something);
将某些内容声明为
bool something()
{
.. code ..
}
你可以随时使用
做点什么PlayGamesPlatform.Instance.localUser.Authenticate((bool success) => { .. code .. } );