Hi when we instal changes from file we get such wornings
UsrReturnLentDevice.Claims_Entity.cs(2340,16) warning CS0114: 'UsrReturnLentDevice.SubProcess2FlowElement.Type' hides inherited member 'SubProcessProxy.Type'. To make the current member override that implementation, add the override keyword. Otherwise add the new keyword.
The proces looks ok and work but anyone know where is the problem
Thanks in advance
Tomek
Like
Try to open the C# code (source code) of the UsrRegurnLentDevice object and investigate the mentioned element. This is the classic definition of the "shadowing" in c#. By default, it's not bad, but it's a good idea to investigate the functionality and make sure that everything is ok.
https://www.tutorialspoint.com/Overriding-Vs-Shadowing-in-Chash