I am new to c# ,Here I am sending a string as a parameter of a API method .
Before that I have converted a password in API as a hashed string to the database .Then I retrieve it from angular 4 and passing again it to API while receiving in Angular 4 I got the same string which I stored in database .
When I pass it to the API ,In API I received the string but it losses + symbols in it .
Specifically it loss all the + in the string .I have tried to replace space with + but it not working in this .
string cc = mPasswordHash.Replace(" ", "+");
Passed String to API : AhU29yCXdtoaNyQ8rhUBZMz0MieMNBTUaaA04hO+pGzd/iK01sQx6ckMi8LqCdyphShlBt9QhLtCizcUsy708eU90GD7Qg==
Received String :
AhU29yCXdtoaNyQ8rhUBZMz0MieMNBTUaaA04hO(here + is not there)pGzd/iK01sQx6ckMi8LqCdyphShlBt9QhLtCizcUsy708eU90GD7Qg==
can anyone help me to solve this .