If you wonder what the Java Toast equivalent of this iOS Objective C event would be than you are in the right place. Below is a sample of what I have written for iOS and Xamarin.iOS. This behave pretty much the same as Alert in Java using a Toast in place of the iOS UIAlert. In […]
You are browsing archives for
Category: .Net C#
Code examples, solutions to problems, bugs, source code, thouths and ideas on Microsoft .NET and C#
How to read a Pop3 server mail folder with C#
Let’s see how to read emails from a pop3 Server. After setting some variables, we’ll create a connection to the Pop3 Server and we’ll try to autenticate with user and password. After we’ll take a bunch of messages and we’ll start to iterate some operation per each message. The message can be cleaned, processed, saved […]
How to use Windows registry in your .Net C# application
In this article I will show how to read and use in your .Net C# application informations stored in the Windows registry. First of all let’s see the easiest way to store some information in the server registry. You can use the “regedit” command to edit the register or you can directly use a register file. […]