check this article click
Saturday, 15 October 2022
Friday, 14 October 2022
interview q
Interview Questions
FAQs: Abstract class vs Interface
Can you instantiate an interface in C#?
An interface can’t be directly instantiated in C#. However, we can access the data members of an interface by creating an object of the implementing class and then assigning the object to the reference variable of the interface it implements.
Thursday, 13 October 2022
Wednesday, 12 October 2022
sonata interview questions
1.virtual and abstract class difference?
2.static and interface ,override,overload,
3.what is web api?
4.different type of authentication?
5.primary key unique key difference?
6.indexer?
7.di in core?
8.filter array duplicates?
9.function,view dif
10.angular decorators annotation?
11.angular js angular difference?
12.final and dispose?
13.
Monday, 10 October 2022
c# split and get last list read txt file line by line
After spliting we get last item in c#
string lastName = "Abraham Lincoln".Split().Last();
namespace New
{
class Program
{
static void Main(string[] args)
{
string line;
int counter = 0;
System.IO.StreamReader file = new System.IO.StreamReader(@"F:\test111.txt");
while ((line = file.ReadLine()) != null)
{
var data = line.Split(';').Last();
Console.WriteLine(data);
var parts = data.Split('^');
Console.WriteLine("Id :-" + parts[0]);
Console.WriteLine("Delivery Code :-" + parts[1]);
counter++;
}
file.Close();
System.Console.WriteLine("There were {0} lines.", counter);
System.Console.ReadLine();
}
}
}Sunday, 9 October 2022
C# interview qstns
check this links of interview questions
https://www.youtube.com/watch?v=VCcXcwsH9G4
solid Principles Solid Principles
solid principles example SOLID
junior devops engnr
Position Overview: We are a growing start up seeking a Junior Azure DevOps Engineer with 2 to 3 years of experience to support our Azure...
-
D:\A-MyProjects2024-2025\ReactNative2025\BookRental\android\app\build\outputs\apk\debug path of apk To build an Android app using Capacitor...
-
👉 When your ExceptionHandlingMiddleware tries to resolve a scoped service directly from the app root container (which is NOT allowed)....