add event and news task
This commit is contained in:
@@ -54,6 +54,16 @@ namespace CampusAppWP8ScheduledTaskAgent.Utility
|
||||
{
|
||||
return str.TrimEnd('\n');
|
||||
}
|
||||
|
||||
public static string ToShortString(string longStr, int maxLenght)
|
||||
{
|
||||
string shortStr = longStr;
|
||||
if (shortStr.Length > maxLenght)
|
||||
{
|
||||
shortStr = shortStr.Substring(0, maxLenght);
|
||||
}
|
||||
return shortStr;
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user