所以
就是
很簡單
新增一個.cs 名字叫ToStringCheckNull 貼上這段範例就行了
看範例吧
using System;
using System.Text;
public static class ToStringCheckNull
{
///
/// ToString時會檢查是否為Null 如果為Null將回傳Null
///
public static string ToStringCheckNull(this object CheckNullValue)
{
string ReturnValue = null;
if (CheckNullValue != null)
ReturnValue = CheckNullValue.ToString();
return ReturnValue;
}
}
重點在public static string ToStringCheckNull(this object CheckNullValue)
public 跟 static 跟 this
沒有留言:
張貼留言