ExternalAnnotations icon indicating copy to clipboard operation
ExternalAnnotations copied to clipboard

Add annotations to System.Convert

Open NN--- opened this issue 7 years ago • 0 comments

For instance Convert.ToString(string) doesn't do anything and can be annotated as:

[ContractAnnotation("s: notnull => notnull; s: null => null")]
public static string ToString(string s);  // { return s; }

Similar to other methods of Convert.

NN--- avatar Dec 05 '18 11:12 NN---