C# Videos (85) - Page 6

Watch free Video tutorials by the selected registered members. If you also want to share video tutorials, please let us know for approval.

85 records found.
 
c# interview questions:-Prove that only 1 instance of the object is created for static classes? 
Last updated on: 25 Jun 2014 05:04:42 AM by Itfunda | Views: 2213 | Category: C#
Want to learn C# start from this video https://www.youtube.com/watch?v=yh2SrzCkNQA In this video we will try to prove that only 1 instance exists for a static class. For more such videos visit http://www.questpond.com
c# (Csharp) interview questions :- What is the use of checked and unchecked keyword ? 
Last updated on: 25 Jun 2014 05:04:11 AM by Itfunda | Views: 1792 | Category: C#
Want to learn C# start from this video https://www.youtube.com/watch?v=yh2SrzCkNQA In this video we will understand what is the use of checked and unchecked keyword in c# (Csharp). For more such videos visit http://www.questpond.com
C# Generic constraints explained 
Last updated on: 07 Apr 2014 08:51:23 AM by Questpond | Views: 3955 | Category: C#
In this video we understand how we can restrict data types to generics by using generic constraints
IS vs AS Keyword ( C# Interview questions with answers) 
Last updated on: 25 Feb 2014 08:01:26 PM by Questpond | Views: 5134 | Category: C#
This is a interesting c# interview question which explains the difference between "IS" and "AS" keyword. "IS" keyword is useful to check if objects are compatible with a type while "AS" keyword helps to do conversion from one type to other type
C# interview questions on ENUM :- How to convert String to a ENUM? 
Last updated on: 05 Feb 2014 07:40:38 AM by Questpond | Views: 4465 | Category: C#
In this video we will try to understand how to convert String to a ENUM.
  • C# interview questions :- Explain typesafe,casting , implicit casting and explicit casting ? 
    Last updated on: 15 Jan 2014 11:33:49 AM by Questpond | Views: 5729 | Category: C#
    This video explains typesafe,casting , implicit casting and explicit casting .
    Explain Coalescing operator (??) in C# ? C# and .NET interview questions with answers 
    Last updated on: 16 Dec 2013 07:14:09 AM by Questpond | Views: 6449 | Category: C#
    "??" is a NULL coalescing operator. If you see the English meaning of coalescing it says "consolidate together". Coalescing operator returns the first NON-NULL value from a chain. For example below is a simple coalescing code which chains four strings. So if "str1" is null it will try "str2" , if "str2" is null it will try "str3" and so on until it finds a string with a non-null value. string final =str1 ?? str2 ?? str3 ?? str4;
    c# Fragile class problem ( .NET and c# interview question videos) 
    Last updated on: 15 Oct 2013 10:19:34 AM by Raja | Views: 8727 | Category: C#
    Inheritance is a great power by which developers can increase reusability in parent-child relationship. But with great powers comes greater responsibility and also problems. One of the problems which creep's in is the "Fragile parent class problem".
    What are Portable Class library in c# ? (C# and .NET interview questions) 
    Last updated on: 02 Sep 2013 01:33:14 AM by Questpond | Views: 5688 | Category: C#
    The whole point of creating a class library project is reusability. Now we want this reusability not only within a .NET application, not across .NET applications but across different types of .NET applications. Now different types of .NET application means WPF, Windows, Silver light, Windows phone etc. That's where portable class libraries are useful. By creating a portable class we can reference it in any kind of .NET project types.
    What is NuGet ?(C# Interview questions with answers) 
    Last updated on: 21 Aug 2013 03:56:20 AM by Questpond | Views: 5984 | Category: C#
    In this video we try to understand need of Nuget and how to use the same.
    i++ vs ++i ( c# interview questions on postfix and prefix) 
    Last updated on: 25 Jul 2013 03:51:00 AM by Questpond | Views: 4733 | Category: C#
    i++ :- In this scenario first the value is assigned and then increment happens. ++i :- In this scenario first the increment is done and then value is assigned.
    Build Vs Rebuild Vs Clean ( c# interview questions with answers) 
    Last updated on: 22 Jul 2013 01:06:00 AM by Questpond | Views: 5804 | Category: C#
    In this video we will try to under Build Vs Rebuild Vs Clean solution menu. Build solution menu: - This will perform an incremental build. In other words it will only build code files which have changed. If they have not changed those files will not touched. Rebuild solution menu: - This will delete all current compiled files (i.e. exe and dll's) and will build everything from scratch, irrespective if there is code change in the file or not. Clean solution menu: - This menu will delete all compiled files (i.e. EXE's and DLL's) from "bin" / "obj" directory.