.net C# Coding Standards and Guidelines: Naming Conversions and Style in C# By Mallikarjun A 20:11:00 3 Comments C# Coding Standards and Guidelines: Naming Conversions and Style 1) Use Pascal casing for type and method and constants. public class SomeC... Read More
.net C# Coding Standards and Guidelines: Comments for C# By Mallikarjun A 09:25:00 Add Comment C# Coding Standards and Guidelines: Comments 1. All source code must include the following comments at the very top: /****************... Read More
C# csharp Advantages of C# By Mallikarjun A 16:50:00 Add Comment Advantages of C# C# being a .NET language, it supports language interoperability, i.e. C# can access code written in any .NET compliant lan... Read More
C# csharp LINQ JOIN interview questions for freshers By Mallikarjun A 14:13:00 Add Comment The JOIN clause is one of the most complex and potentially confusing aspects of LINQ. A thorough understanding of the JOIN clause can help... Read More
csharp C# Interview Questions on Abstract and Sealed Class Members By Mallikarjun A 16:54:00 Add Comment What is an abstract class? An abstract class is an incomplete class and must be implemented in a derived class. Can you create an inst... Read More
C# csharp Difference between Constant and Readonly in C# By Mallikarjun A 19:40:00 Add Comment Constant Constant variables must be assigned value at compile time. Once the value is assigned it cannot be changed. It is static by... Read More
C# csharp Difference between Abstract Class and Interface in C# By Mallikarjun A 15:46:00 Add Comment Abstract Class Abstract class is inherited. We cannot create an object of abstract class. Abstract class does not support multiple in... Read More
.net C# Difference Between String And StringBuilder in C# By Mallikarjun A 16:25:00 Add Comment String It is Immutable. String Using System NameSpaces. Once Create String Object We Cannot Modify. String Cannot Append Keyw... Read More