@@ -10,7 +10,7 @@ namespace CSharpToJavaScript.APIs.JS.Ecma;
1010[ To ( ToAttribute . Default ) ]
1111public partial class String : StringPrototype
1212{
13- public dynamic Value { get ; set ; }
13+ public dynamic ? Value { get ; set ; }
1414
1515 public static implicit operator String ( string value ) { return new String ( value ) { Value = value } ; }
1616 public static implicit operator string ( String value ) { return new String ( value ) { Value = value } ; }
@@ -84,7 +84,7 @@ public bool LastIndexOf(string searchString, int position = 0 )
8484 {
8585 throw new System . NotImplementedException ( ) ;
8686 }
87- public int LocaleCompare ( string that , dynamic reserved1 = null , dynamic reserved2 = null )
87+ public int LocaleCompare ( string that , dynamic ? reserved1 = null , dynamic ? reserved2 = null )
8888 {
8989 throw new System . NotImplementedException ( ) ;
9090 }
@@ -152,7 +152,7 @@ public string ToLowerCase()
152152 {
153153 throw new System . NotImplementedException ( ) ;
154154 }
155- public string ToString ( )
155+ public new string ToString ( )
156156 {
157157 throw new System . NotImplementedException ( ) ;
158158 }
@@ -172,7 +172,7 @@ public string TrimStart()
172172 {
173173 throw new System . NotImplementedException ( ) ;
174174 }
175- public String ValueOf ( )
175+ public new String ValueOf ( )
176176 {
177177 throw new System . NotImplementedException ( ) ;
178178 }
0 commit comments