C# Pointer指針應用實例簡述
更新時間:2014年08月04日 11:11:21 投稿:shichen2014
這篇文章主要介紹了C# Pointer指針應用,對初學者很有借鑒學習價值,需要的朋友可以參考下
本文所述為在C#中使用Pointer指針的簡單示例,非常適合新手參考學習。該實例演示了字符串的加密及解密的過程,將字符串指針p指向字符數(shù)組b,并將參數(shù)p傳給函數(shù),以及對給定字符串進行加密處理。
具體實例代碼如下:
using System;
namespace PointerDemo
{
public class PointerDemo
{
public static void Main()
{
string s = "Hello Csharp!"; // 原字符串
Console.Write("the original string: ");
Console.WriteLine("{0}\r\n", s);
char[] b = new char[100];
s.CopyTo(0,b,0,13);
Console.Write("the encoded string: ");
// 使用不安全代碼
unsafe
{
// 加密過程
// 將字符串指針p指向字符數(shù)組b,并將參數(shù)p傳給函數(shù)
fixed(char *p = b) NEncodeDecode(p);
}
for(int i = 0; i < 13; i++)
Console.Write(b[i]);
Console.WriteLine("\r\n");
Console.Write("the decoded string: ");
unsafe
{
// 解密過程
fixed(char *p = b)NEncodeDecode(p);
}
for(int i = 0; i < 20; i++)
Console.Write(b[i]);
int t = 2;
t = t^5;
Console.WriteLine(t);
Console.WriteLine();
}
// 對給定字符串進行加密處理
unsafe public static void NEncodeDecode(char *s)
{
int w;
for(int y = 0; y < 13; y++)
{
w = (int) *(s + y);
w = w^5; // 異或運算
*(s + y) = (char)w;
}
}
}
}
相關(guān)文章
詳解C#使用AD(Active Directory)驗證內(nèi)網(wǎng)用戶名密碼
這篇文章主要介紹了詳解C#使用AD(Active Directory)驗證內(nèi)網(wǎng)用戶名密碼的相關(guān)資料,希望通過本文能幫助到大家,讓大家實現(xiàn)這樣的功能,需要的朋友可以參考下2017-10-10

