Thursday, 22 December 2022

C# predefined methods


C# | IsNullOrEmpty() Method


>In c# sometimes we need to check string contains emtpy or null then
 use above predefined method. isnulloremtpy.
How to use:
string.IsnullOrEmty(give here yourvalue)
for more predefined methods check below link



refer this Link

No comments:

Post a Comment

remove duplicates in an sorted array

  using System; public class HelloWorld {          public static void Main(string[] args)     {         int[] ar={2,2,3,3,4,6,6};          C...