strcmp help

  • Thread starter Thread starter Rosario
  • Start date Start date
R

Rosario

How I can use the strcmp function? for my sharepoint
services web part.
 
Hi Rosario,

There is no strcmp in .Net Framework or C#, use String.Compare instead

int result = String.Compare(string1, string2);
 
-----Original Message-----
Hi Rosario,

There is no strcmp in .Net Framework or C#, use String.Compare instead

int result = String.Compare(string1, string2);
Thank you very much!
by Rosario from Italy.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top