ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

342 results

Ali Awan
Making a String Builder in C

In this video I go over how String Builders work and then create an example implementation in C. Link to the Code: ...

19:58
Making a String Builder in C

1,508 views

8 months ago

CodeChase
c stringbuilder appendformat

Get Free GPT4.1 from https://codegive.com/881fc0f ## C# StringBuilder.AppendFormat: A Comprehensive Guide The ...

1:44
c stringbuilder appendformat

3 views

6 months ago

TechnologyPlatform
what is string in c# | stringbuilder | string class | contains | substring | indexof | verbatim @ c#

TechnologyPlatform @TechnologyPlatform-V1 C# In English In this video, we will cover the following important C# concepts: What ...

1:01:00
what is string in c# | stringbuilder | string class | contains | substring | indexof | verbatim @ c#

12 views

3 months ago

SharpCode Academy
Noob vs. Pro in C# - Stop Concatenating Strings 🚫

Noob way: string result = ""; for (int i = 0; i lt 100; i++) { result += i; } ✓ Pro way: var sb = new StringBuilder(); for (int i = 0; i lt 100; ...

0:10
Noob vs. Pro in C# - Stop Concatenating Strings 🚫

2,508 views

3 months ago

Debugging Dojo
C#: Using StringBuilder for efficient string concatenation

In this video we will explore how to use StringBuilder for efficient string concatenation. The source code for this video can be found ...

16:46
C#: Using StringBuilder for efficient string concatenation

3 views

3 months ago

Tchaps Tech
String vs StringBuilder en C# : Différences et Astuces de Performance - Visual Studio

Découvrez les différences essentielles entre String et StringBuilder en C# avec Visual Studio. Comprenez pourquoi le choix entre ...

12:00
String vs StringBuilder en C# : Différences et Astuces de Performance - Visual Studio

60 views

1 month ago

CodeChase
c stringbuilder appendformat throwing systemformatexception

Get Free GPT4.1 from https://codegive.com/06c3fcf ## The `System.FormatException` with `StringBuilder.AppendFormat`: A Deep ...

2:00
c stringbuilder appendformat throwing systemformatexception

0 views

6 months ago

SharpCode Academy
C# String Concatenation vs. StringBuilder 🔥

Stop wasting memory and CPU cycles in C#! In this short, we show why using + to concatenate strings in loops can slow down ...

0:21
C# String Concatenation vs. StringBuilder 🔥

1,020 views

3 months ago

CodeWithZaman
string vs StringBuilder in C# | Performance Explained with Examples

Understanding the difference between String and StringBuilder in C# is crucial for writing high-performance .NET applications.

0:10
string vs StringBuilder in C# | Performance Explained with Examples

245 views

9 months ago

The Debug Zone
How to Check if a StringBuilder is Empty in C# - Quick Guide

In this quick guide, we'll explore how to determine if a StringBuilder object is empty in C#. StringBuilder is a powerful class in the .

1:53
How to Check if a StringBuilder is Empty in C# - Quick Guide

2 views

2 months ago

vlogommentary
String and StringBuilder References in C#: Does Assigning New Values Affect the Original String?

Learn how assigning new values to `String` and `StringBuilder` objects in C# affects their references, and understand the ...

2:04
String and StringBuilder References in C#: Does Assigning New Values Affect the Original String?

2 views

10 months ago

Static Void Main
How StringBuilder Made My C# Code 10,000x Faster

Are your C# string operations secretly slowing down your code? In this quick clip, watch as I put regular string concatenation to the ...

7:00
How StringBuilder Made My C# Code 10,000x Faster

187 views

1 month ago

Ivan Zhelezniak
C# String vs StringBuilder

Key difference between String and StringBuilder in C#.

3:10
C# String vs StringBuilder

26 views

7 months ago

vlogize
Understanding StringBuilder and the .replace() Method in C#

Discover why using `.replace()` in your `StringBuilder` can lead to unexpected results in C-. Learn how to achieve desired string ...

1:48
Understanding StringBuilder and the .replace() Method in C#

0 views

8 months ago

The Debug Zone
Understanding StringBuilder vs String Equality Check in C# Programming

In this video, we delve into the nuances of string manipulation in C# by exploring the differences between StringBuilder and string ...

2:50
Understanding StringBuilder vs String Equality Check in C# Programming

9 views

5 months ago

Ed Andersen
5000x Faster String Concatenation #csharp #dotnet #coding

If you're building strings inside a loop using the + or += operator, you are destroying your application's performance. In C#, strings ...

1:50
5000x Faster String Concatenation #csharp #dotnet #coding

8,168 views

5 months ago

TechnologyPlatform
string in c# in hindi | stringbuilder | string class | contains | substring | indexof | verbatim @

TechnologyPlatform @TechnologyPlatform-V1 C# In Hindi In this video, we will cover the following important C# concepts: What is ...

58:08
string in c# in hindi | stringbuilder | string class | contains | substring | indexof | verbatim @

17 views

3 months ago

TeachMeSkills Школа программирования
C# — сложно? Сравниваем с другими языками

C# — сложно? Сравниваем с другими языками #shorts.

0:54
C# — сложно? Сравниваем с другими языками

1,763 views

3 months ago

Ruslan Shishmarev
HOW DOES StringBuilder WORK? Implementing Our Own in C# – Interview Analysis!

StringBuilder is one of the most important classes in C#, especially when working with strings. It's often asked about in ...

12:28
HOW DOES StringBuilder WORK? Implementing Our Own in C# – Interview Analysis!

1,234 views

8 months ago

Object Oriented Programming
StringBuilder

We do an experiment with StringBuilder object to show why we might want to use StringBuilders instead of Strings in certain ...

3:08
StringBuilder

10 views

10 months ago