Answers for "using in c#"

C#
5

using in c#

//doing with using function
using (var font1 = new Font("Arial", 10.0f)) 
{
    byte charset = font1.GdiCharSet;
}

//or
using var font1 = new Font("Arial", 10.0f);
byte charset = font1.GdiCharSet;
Posted by: Guest on April-02-2020
0

using statement c#

using (var reader = new StringReader(manyLines))
{
    string? item;
    do {
        item = reader.ReadLine();
        Console.WriteLine(item);
    } while(item != null);
}
Posted by: Guest on December-18-2020

C# Answers by Framework

Browse Popular Code Answers by Language