Category: C#
C# Compiler Error – CS0663 ‘{0}’ cannot define an overloaded {1} th
In this blog post, you’ll learn more about the C# Compiler Error – CS0663 and the related message description C# Compiler Error Code CS0663 C# Compiler Description for the Code :CS0663 ‘{0}’ cannot define an overloaded {1} that differs only on parameter modifiers ‘{2}’ and ‘{3}’
C# Compiler Error – CS0668 two indexers have different names; the i
In this blog post, you’ll learn more about the C# Compiler Error – CS0668 and the related message description C# Compiler Error Code CS0668 C# Compiler Description for the Code :CS0668 Two indexers have different names; the IndexerName attribute must be used with the same name on every indexer within a type
C# Compiler Error – CS1553 declaration is not valid; use ‘{0} opera
In this blog post, you’ll learn more about the C# Compiler Error – CS1553 and the related message description C# Compiler Error Code CS1553 C# Compiler Description for the Code :CS1553 Declaration is not valid; use ‘{0} operator (…’ instead
C# Compiler Warning – CS8824 parameter ‘{0}’ must have a non-null val
In this blog post, you’ll learn more about the C# Compiler Warning – CS8824 and the related message description C# Compiler Warning Code CS8824 C# Compiler Description for the Code :CS8824 Parameter ‘{0}’ must have a non-null value when exiting because parameter ‘{1}’ is non-null.
C# Compiler Error – CS2037 an expression tree lambda may not contai
In this blog post, you’ll learn more about the C# Compiler Error – CS2037 and the related message description C# Compiler Error Code CS2037 C# Compiler Description for the Code :CS2037 An expression tree lambda may not contain a COM call with ref omitted on arguments
Can Mail be sent in Background in Windows Phone 8 using Launcher?
In one of the previous article, we explained about sending email in Windows Phone 8 using EmailComposeTask which invokes the UI for the user with the content of the email. When the user taps on the send button , the email is sent to the user. Can Mail be sent in Background in Windows Phone 8 using Launcher? Currently , the Windows Phone 8 SDK…
C# Compiler Warning – CS1710 xml comment has a duplicate typeparam ta
In this blog post, you’ll learn more about the C# Compiler Warning – CS1710 and the related message description C# Compiler Warning Code CS1710 C# Compiler Description for the Code :CS1710 XML comment has a duplicate typeparam tag for ‘{0}’
C# Compiler Error – CS8202 public signing is not supported for netm
In this blog post, you’ll learn more about the C# Compiler Error – CS8202 and the related message description C# Compiler Error Code CS8202 C# Compiler Description for the Code :CS8202 Public signing is not supported for netmodules.
Launching the lock Screen Settings App using URI Scheme in Windows Phone 8
Below is a sample code snippet demonstrating on how to launch the lock Screen App via the URI Scheme and LaunchUriAsync method in Windows Phone using C#? Launching the lock Screen Settings App using URI Scheme in Windows Phone 8
Using HashSet to remove duplicates from array in C#
If you want to remove duplicates from an array in C# , one of the options is to use HashSet as shown below. How to remove duplicates from an array in C# using HashSet?
C# Compiler Error – CS1583 error reading win32 resources — {0}
In this blog post, you’ll learn more about the C# Compiler Error – CS1583 and the related message description C# Compiler Error Code CS1583 C# Compiler Description for the Code :CS1583 Error reading Win32 resources — {0}
How to Get the Last Element from LINQ Query in C#?
Below is a sample source code demonstrating How to Get the Last Element from LINQ Query in C#? How to Get the Last Element from LINQ Query in C#?