NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Compiler Error C2925

'identifier' : explicit instantiation; class 'member' does not specify a template-class specialization

You cannot explicitly instantiate a member of a nontemplated class.

Example

class C 
{
   public: void a(void){};
};
template C::a(void);  // error