0

我在函数 Doit 中使用此代码收到这些错误(我正在运行.Net 3.5):

错误 1: The best overloaded method match for 'LoadPref<A>(string, System.Func<string,A>, A)' has some invalid arguments
错误 2: Argument '2': cannot convert from 'method group' to 'System.Func<string,A>'

class A : SomeObject
{

}

static class Utilities
{
    private T LoadPref<T>( string key, Func<string, T> loaderFunc, T defaultValue ) 
    {        
       if ( Prefs.HasKey( key ) )
       {
           return loaderFunc( Prefs.GetString( key ) );
       }

       return defaultValue;
    }


    private T LoadAsset<T>( string assetPath ) where T : SomeObject
    {
       return (T)LoadAssetInSomeWay( assetPath );
    }


    private void Doit()
    {
         A asset = LoadPref<A>( "key", LoadAsset, null );
    }
}

有谁知道出了什么问题?

4

3 回答 3

5

您需要更改LoadAssetLoadAsset<A>才能使泛型正常工作。

于 2012-07-18T11:57:48.523 回答
2

静态类不能包含实例方法。

于 2012-07-18T12:00:02.267 回答
0

当您调用时LoadPref<A>,请传入LoadAsset<A>而不是仅传入LoadAsset

于 2012-07-18T11:59:05.107 回答