Click here to Skip to main content
15,896,207 members
Home / Discussions / C#
   

C#

 
QuestionQuestions about refactoring switch statement to Strategy Pattern in C# Pin
Member 97402194-Dec-14 11:48
Member 97402194-Dec-14 11:48 
AnswerRe: Questions about refactoring switch statement to Strategy Pattern in C# Pin
SledgeHammer014-Dec-14 12:24
SledgeHammer014-Dec-14 12:24 
GeneralRe: Questions about refactoring switch statement to Strategy Pattern in C# Pin
BillWoodruff4-Dec-14 18:36
professionalBillWoodruff4-Dec-14 18:36 
GeneralRe: Questions about refactoring switch statement to Strategy Pattern in C# Pin
Matt T Heffron5-Dec-14 6:51
professionalMatt T Heffron5-Dec-14 6:51 
Questionpostback issue with dynamically created datetimepicker Pin
Dhyanga4-Dec-14 4:58
Dhyanga4-Dec-14 4:58 
SuggestionRe: postback issue with dynamically created datetimepicker using javascript Pin
Richard MacCutchan4-Dec-14 5:01
mveRichard MacCutchan4-Dec-14 5:01 
GeneralRe: postback issue with dynamically created datetimepicker using javascript Pin
Dhyanga4-Dec-14 8:04
Dhyanga4-Dec-14 8:04 
QuestionHow to find a particular embedded resource in an assembly? Pin
Sivaji15654-Dec-14 1:08
Sivaji15654-Dec-14 1:08 
My function takes resource file name as input and returns Bitmap object.

GetManifestResourceNames returns fully qualified resource names. Sample Input is like "Fileopen.png".

How to find the required resource without doing any string operation ? Or any other way is also welcome.

C#
public static Bitmap GetBitmap_FromResource(string ImageName)
        {
            Assembly assembly = Assembly.GetExecutingAssembly();
            string strResName = GetReqdResourceName(assembly, ImageName);
            if (string.IsNullOrEmpty(strResName))
                return null;

            Stream imgstream = assembly.GetManifestResourceStream(strResName);
            if (imgstream == null)
                return null;

            Bitmap Img = new Bitmap(imgstream);
            return Img;
        }

public static string GetReqdResourceName(Assembly assembly, string strResName)
        {
            string[] resNames = assembly.GetManifestResourceNames();

            // How to find the resource name without string operation
            return null;
        }

SuggestionRe: How to find a particular embedded resource in an assembly? Pin
Richard MacCutchan4-Dec-14 2:06
mveRichard MacCutchan4-Dec-14 2:06 
QuestionC# Error check Pin
Member 112847343-Dec-14 18:06
Member 112847343-Dec-14 18:06 
AnswerRe: C# Error check Pin
Manfred Rudolf Bihy3-Dec-14 18:20
professionalManfred Rudolf Bihy3-Dec-14 18:20 
GeneralRe: C# Error check Pin
Member 112847343-Dec-14 18:34
Member 112847343-Dec-14 18:34 
GeneralRe: C# Error check Pin
Manfred Rudolf Bihy3-Dec-14 19:53
professionalManfred Rudolf Bihy3-Dec-14 19:53 
AnswerRe: C# Error check Pin
Harsh Athalye5-Dec-14 0:14
Harsh Athalye5-Dec-14 0:14 
QuestionHow to copy a file from my computer to a shared folder of another computer with login username and password account Pin
Derz3-Dec-14 14:58
Derz3-Dec-14 14:58 
AnswerRe: How to copy a file from my computer to a shared folder of another computer with login username and password account Pin
PIEBALDconsult3-Dec-14 16:23
mvePIEBALDconsult3-Dec-14 16:23 
Questioninvalid length for a base-64 char array or string Pin
Jassim Rahma3-Dec-14 11:35
Jassim Rahma3-Dec-14 11:35 
SuggestionRe: invalid length for a base-64 char array or string Pin
Richard MacCutchan3-Dec-14 20:56
mveRichard MacCutchan3-Dec-14 20:56 
GeneralRe: invalid length for a base-64 char array or string Pin
Jassim Rahma3-Dec-14 22:27
Jassim Rahma3-Dec-14 22:27 
GeneralRe: invalid length for a base-64 char array or string Pin
Richard MacCutchan3-Dec-14 22:38
mveRichard MacCutchan3-Dec-14 22:38 
QuestionSetting an instance object equal to my empty string. Pin
Member 112838693-Dec-14 8:00
Member 112838693-Dec-14 8:00 
GeneralRe: Setting an instance object equal to my empty string. Pin
PIEBALDconsult3-Dec-14 8:07
mvePIEBALDconsult3-Dec-14 8:07 
GeneralRe: Setting an instance object equal to my empty string. Pin
Shweta N Mishra3-Dec-14 21:21
professionalShweta N Mishra3-Dec-14 21:21 
QuestionHow to send cell value from DataGrid to text file? Pin
Member 100245173-Dec-14 5:01
Member 100245173-Dec-14 5:01 
SuggestionRe: How to send cell value from DataGrid to text file? Pin
ZurdoDev3-Dec-14 5:14
professionalZurdoDev3-Dec-14 5:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.