enum attachmentType { filePath , fileString}; public static void SendEmail(attachmentType = attachmentType.filePath) { // Do stuff }
public enum attachmentType { filePath , fileString}; public static void SendEmail(attachmentType type = attachmentType.filePath) { // Do stuff }
enum attachmentType { filePath , fileString}; public static void SendEmail(attachmentType type = attachmentType.filePath) { // Do stuff }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)