Friday 31 December 2021

SEO tips for 2022


Today I am sharing best seo tips for 2022. These are the very short and effective tips which will works for you.

So let's read the below seo tips for 2022 which definaltly work for new website.

  • 1. Nice Domain name
  • 2. Purpose and design
  • 3.keyword research
  • 4. Set the keywords in Title and content
  • 5. Use pure HTML with no broken any tags
  • 6. Use H1 to H6 tag in your content
  • 7. Unique title and content for each page
  • 8. Internal link and external link
  • 9. update fresh content frequently
  • 10. About and Contact us page
  • These are the simply seo tips you should follow and it will increase organic traffic as well as product selling.

Tuesday 28 December 2021

Difference between string and stringbuilder in c#

 

The main Difference between string and stringbuilder in c# is below

Sr No. Sting StringBuilder
1. String is immutable. StringBuilder is mutable in C#.
2. We can't modify it after it is created. It creates a new object of string type in memory if we perform any operation in that String variable This means that if an operation is performed on the string, it will not create a new instance every time. With that, it will not create new space in memory, unlike Strings.
3. It is slow because all time create new instance It is fast because of same instance using when any operation is performed
4. The namespace used System The namespace used System.Text


Asp.net tutorials