While reading a document, I see an example of a class method such as the following. Question: What is the keyword state
here for? From the context of the document or from online search I could not find anything related to this type of class method signature
:
Public state void myMethod<T>(T obj)
where T : myClass
{
...
}