- NET Framework security system
- provide access to authentication
- provide crytographic services
- control access to operations based on policy
- rights management of application-created content
Search This Blog
Wednesday, December 24, 2014
C# > System.Security
C# > System.Security
Etichete:
c#
Friday, December 19, 2014
Dynamic Type C# Example
C# > Types > dynamic
The dynamic enables bypass compile-time type checking. These operations are resolved at run time.
Example
dynamic dyn = 1;
object obj = 1;
var dyn_type = dyn.GetType(); //
System.Int32
var obj_type = obj.GetType(); //
System.Int32
dyn
= dyn + 1; //Ok
obj
= obj + 1; // Error 1 Operator '+' cannot be applied to operands
of type 'object' and 'int'
Etichete:
c#
Object Type C# Example
C# > Types > object
You can assign values of any type to variables of type object.
Example
object obj;
You can assign values of any type to variables of type object.
Example
object obj;
obj = 1;
string type = obj.GetType().Name; //Int32
obj = "string";
type = obj.GetType().Name; //String
Etichete:
c#
Thursday, December 18, 2014
Dns Get Host By Name C# Example
C# > System.Net > Dns
Retrieves information about a specific host from the Internet Domain Name System (DNS).
Example
Retrieves information about a specific host from the Internet Domain Name System (DNS).
Example
IPHostEntry hostInfo = Dns.GetHostByName("www.microsoft.com");
string hostName = hostInfo.HostName;
IPAddress[] addressList = hostInfo.AddressList;
foreach (IPAddress ipAddress in addressList)
{
}
Etichete:
c#
Monday, December 15, 2014
C# System.Net
C# > System.Net
Provides programming interface for:
Provides programming interface for:
- network protocols
- cache policies
- network traffic data and network address information
- networking functionality
Namespaces
Etichete:
c#
STR SQL Server Example
SQL Server > Built-in Functions > STR
Converts number to varchar.
SELECT STR(123.45, 6, 1);
GO
result
123.5
Converts number to varchar.
STR ( expression , length , decimal )
Example:
SELECT STR(123.45, 6, 1);
GO
result
123.5
Etichete:
SQL Server
Assembly Class C# Example
C# > System > Reflection > Assembly
Assembly class:
Example
Assembly class:
- load assemblies
- explore the metadata
- find the types contained in assemblies and to create instances of those types.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplication27
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
Assembly a = typeof(Form1).Assembly;
MessageBox.Show(a.FullName);
}
}
}
Etichete:
c#
Subscribe to:
Posts (Atom)